Skip to content

Techonia.com

News, Tutorials, and How tos about Technology

Archive

Tag: Postfix

Today I just got an announcement from Wietse Venema (the developer of Postfix) via Postfix mailing list that Postfix 2.7.0 stable has been released. An on-line version of this announcement will be available at http://www.postfix.org/announcements/postfix-2.7.0.html.

For the past several releases, the focus has moved towards improving the code and documentation, and updating the system for changing environments. continue reading…

Incoming search terms for this post:

The conventional way for a mail client program to send e-mail is using TCP port 25, which is also the port used by mail servers to talk to each other. But port 25 is now widely abused by malware to spread worms and spam. As a result, many ISPs are restricting its use. continue reading…

Incoming search terms for this post:

You want to log email Subject field into /var/log/maillog?

By default the email subject field is not logged to the maillog file. To log it, here is the trick.

Edit /etc/postfix/main.cf and uncomment  the option below:

header_checks = regexp:/etc/postfix/header_checks

In the ‘/etc/postfix/header_checks’ file, write the line below in one line:

/^Subject:/ WARN

Then reload the postfix service using “postfix reload”
continue reading…

Incoming search terms for this post:

SMTP Authentication is a scheme which was introduced in 1999 by J. Myers of Netscape Communications and finally released as RFC 2554 (“SMTP Service Extension for Authentication”). It is partly based on the SMTP Service Extensions as defined in RFC 1869.
Using SMTP Authentication activated both on server and client, you can send email from anywhere, everywhere, even from mars. As long as authenticated, you can relay access to the smtp server. continue reading…

Incoming search terms for this post:

If an email message is undeliverable, it will bounce back with ‘MAILER-DAEMON’  telling you that the message could not be delivered to the destination addresses. The queue will try to keep delivering based on your mail server configuration. Unfortunately it will make your mail server takes some resources to the queues. And we dont want this thing happened.
continue reading…

Incoming search terms for this post: