Categories
- Database (7)
- DNS (5)
- Encryption (8)
- Linux Administration (78)
- MacOSX (9)
- Mailserver (11)
- Monitoring (3)
- Multimedia (2)
- Photo (1)
- PHP (7)
- Rescue (4)
- Review (5)
- Security (37)
- Storage (1)
- Uncategorized (1)
- Version control system (16)
- Virtualisation (4)
- Web technologies (8)
- Wordpress (1)
Social Profiles
Facebook
Github
Twitter
Linkedin
Xing
Gravatar
Stackoverflow
Mastodon-
Category Archives: Mailserver
Remove stuck emails from postfix mail queue
Sometimes mails queue up in the postfix mail queue for some reason, maybe the destination mailserver does not exist or some emails have a recipient address that is incorrect. This is generally not a problem, but sometimes, a system automation … Continue reading
Posted in Mailserver
Comments Off on Remove stuck emails from postfix mail queue
Setup Sieve mail filter with Postfix and Dovecot
A mailbox can get flooded with many emails, some are automatically generated, others are related to orders. Sorting through emails on a daily basis can be a tedious task. Email filters can help automate the most common tasks. One of … Continue reading
Posted in Mailserver
Tagged Dovecot, mail filter, Mailserver, postfix, sieve
Comments Off on Setup Sieve mail filter with Postfix and Dovecot
Permanently reject a specific email sender address using postfix
Postfix generally accepts all sender addresses. It might be needed in some rare cases to reject one sender addresses for some reason. With postfix, there is the possibility to use the “check_sender_access” to set individual actions per sender address. For the … Continue reading
Posted in Linux Administration, Mailserver
Tagged check_sender_access, email, postfix, recipient_restrictions, reject, sender address, sender_access
Comments Off on Permanently reject a specific email sender address using postfix
Setup amavisd-new with spamassassin and clamav with postfix
In the here described setup, postfix passes the incoming mails on to amavisd-new. There, the emails get checked for viruses and spam. After the email is checked, it is sent back to postfix for its delivery. Continue reading
Posted in Mailserver
Tagged amavisd, clamav, postfix, Postgrey, Pyzor, SPAM filter, spamassassin
Comments Off on Setup amavisd-new with spamassassin and clamav with postfix
Reject individual email address with address extension
With address extension configured in postfix, it is very easy to use new email addresses for every website you register on, but if some website leaks your email, you might receive lots of spam. If the address was an email address configured … Continue reading
Posted in Mailserver
Tagged address extension, postfix
Comments Off on Reject individual email address with address extension
Setup Dovecot with PAM authentication and SSL on CentOS
Dovecot will act as the IMAP server for this setup. If you need POP3, this can also be provided by dovecot, but in this article I’m just going to show how to setup IMAP with SSL to protect the transfer of emails. Installation … Continue reading
Posted in Mailserver
Tagged CentOS, Dovecot, PAM, SASL Auth
Comments Off on Setup Dovecot with PAM authentication and SSL on CentOS
Configure address extension in Postfix
Address extension is one of the features known from GMail but never thought about configuring for your own mail server. I did not think about it for quite some time as i thought it might be complicate to achieve this feature. But I was surprised to see how easy it using postfix. Continue reading
Posted in Mailserver
Tagged address extension, postfix
Comments Off on Configure address extension in Postfix
Harden the SSL configuration of your mailserver
I described in one of my earlier post how to Setup Postfix with SMTP-AUTH and TLS on CentOS. I will follow up on this article describing how to harden the configuration of your mail server related to SSL. Continue reading
Posted in Mailserver, Security
Tagged Dovecot, openssl, postfix
Comments Off on Harden the SSL configuration of your mailserver
Setup Postfix for multiple domains
If you have postfix configured as your mail server you have most likely configured it for one particular domain. If you have more then one domain, you can configure postfix to handle those as well to receive emails for them. In … Continue reading
Posted in Mailserver
Tagged postfix, virtual domains
Comments Off on Setup Postfix for multiple domains
Setup Postfix with SMTP-AUTH and TLS on CentOS
Understanding Postfix Postfix is like a router in a network, just for email traffic. It receives emails from a sender and tries to send them on to their recipient, where the recipient can be the local postfix server or some other … Continue reading