If i get this right, you are sending mails with in this case a php script, right?
Because looking at the queue message this looks for me like your server does not reach the destination mailserver, as the connections times out.
Did you check your message log for maybe dropped outbound connections?
You may test this via
Quote:
|
telnet alt4.gmail-smtp-in.l.google.com 25
|
If you see any response, just enter "quit" and hit enter.
Does sending mails to other recipients work for you? Eventhough I think it does not make a difference, did you try sending to the same thing just via the mail command.
Regarding the queue handling, here's a short manual:
Quote:
#Delete the whole queue:
postsuper -d ALL
#Delete single mails - List quee first and copy the ID of the specific mail:
mailq | less
#delete the specific mail
postsuper -d <QUEUEID>
#Delete mails from or to a specific mailadress:
mailq | tail +2 | awk 'BEGIN { RS = "" } / user@domain\.tld$/ { print $1 } ' | tr -d '*!' | postsuper -d -
|
Recent comments
1 day 19 hours ago
2 days 4 hours ago
2 days 7 hours ago
2 days 8 hours ago
2 days 10 hours ago
2 days 11 hours ago
2 days 13 hours ago
2 days 14 hours ago
3 days 6 hours ago
3 days 7 hours ago