Chap 5: Queue Management Flashcards

1
Q

What are the 5 different queues of the Queue Manager ?

A

incoming, active, deferred, hold, corrupt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which parameter allows to specify the minimum amount of free space in bytes in the queue file system that is needed to receive mails ?

A

queue_minfree

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to specify the maximal amount of original message text that is sent in a non-delivery notification ?

A

bounce_size_limit (default: 50000)

Specify a byte count.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to configure the maximal time after which a message must be considered as undeliverable, when delivery fails with a temporary error ?

A

maximal_queue_lifetime (default 5days)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which parameters set the time between deferred queue scans by the queue manager ?

A

queue_run_delay (default 300s)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to set minimum and maximum time limits on how often Postfix attempts to redeliver deferred messages

A

minimal_backoff_time and maximal_backoff_time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to configure the list of error classes that should generate error notices ?

A

notify_classes = bounce, 2bounce, delay, policy, protocol, resource, software

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to configure the email address that will recive the error notifications ?

A

parameters of the form class_notice_recipient:

bounce_notice_recipient
2bounce_notice_recipient
delay_notice_recipient

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to list all the messages in the postfix queue ?

A

postqueue -p

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to remove messages from the queue ?

A

postsuper -d DBA3F1A9

or

postsuper -d ALL (Be very careful when using the command, since it will delete all queued messages without asking any questions)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the purpose of the hold queue ?

A

The hold queue is available for messages you would like to keep in your queue indefinitely

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How to place message into the hold queue ?

A

postsuper -h DBA3F1A9

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How to move the message back from hold queue into the normal queue ?

A

postsuper -H DBA3F1A9

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How to requeue messages that were deferred because of a configuration problem that has been
corrected ?

A

postsuper -r ALL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How to display the content of a queued message ?

A

postcat -q DBA3F1A9

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is message flushing in postfix ?

A

Flushing the queue causes Postfix to attempt to deliver messages in the queue immediately

17
Q

How to flush all queued messages ?

A

postqueue -f

18
Q

How to flush messages destined for a particular site ?

A

postqueue -s example.com

example.com must be listed in the parameter fast_flush_domains (which default to ‘relay_domains’)