-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add troubleshooting test email delivery (postfix) (#3344)
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,20 @@ Otherwise, you must perform the following diagnostic steps: | |
.. Verify the user's email address. | ||
.. Verify {ProjectServer}'s email configuration. | ||
.. Examine firewall and mail server logs. | ||
.. If your {ProjectServer} uses the Postfix service for email delivery, the test email might be held in the queue. | ||
To verify, enter the `mailq` command to list the current mail queue. | ||
If the test email is held in the queue, `mailq` displays the following message: | ||
+ | ||
[options="nowrap", subs="+quotes,attributes"] | ||
---- | ||
postqueue: warning: Mail system is down -- accessing queue directly | ||
-Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient------- | ||
BE68482A783 1922 Thu Oct 3 05:13:36 {project-context}[email protected] | ||
---- | ||
+ | ||
To fix the problem, start the Postfix service on your {ProjectServer}: | ||
+ | ||
[options="nowrap", subs="+quotes,attributes"] | ||
---- | ||
# systemctl start postfix | ||
---- |