Currently browsing tag

postfix

Postfix with SASL-Authentication in Debian – Jonas Genannt

I think SMTP-AUTH is very important! Here is a short HowTo for Postfix with sasl authentication against shadow. First install the necessary packages: apt-get install postfix-tls libsasl2-modules sasl2-bin Open the /etc/default/saslauthd for the configuration. # This needs to be uncommented before saslauthd will be run automatically START=yes # You must …

Postfix Flush the Mail Queue

Traditionally you use the « sendmail -q » command to flush mail queue under Sendmail MTA. Under Postfix MTA, just enter the following command to flush the mail queue: # postfix flush OR # postfix -f To see mail queue, enter: # mailq To remove all mail from the queue, enter: # …

David McNett :: Postfix Relay Recipient Maps

What’s a secondary got to do The last step is to tell the secondary where to find the recipient map. This is done using the relay_recipients_map facility in main.cf. Here’s what one looks like: relay_recipient_maps = hash:/usr/local/etc/postfix/relay_recipients hash:/home/nugget/relay_slacker The relay_slacker file is the one that’s being synced with our perl …

Debian GNU/Linux :: Serveur :: Mail

3.4 Dovecot LDA Postfix possède son propre agent de livraison (LDA ou MDA pour Local ou Mail Delivery Agent) mais cette documentation propose d’utiliser le LDA de Dovecot qui est beaucoup plus riche fonctionnellement : il permet notamment de gérer les quotas sur les Maildir et apporte le support des …

SPF et domainkey

 SPF est l’ancienne technique de vérification des identité mails, cré par Yahoo . Domainkey ( dkim ) la nouvelle, cré par un groupe . SPF ( Sender Policy Framework ) fonctionne comme ceci : example.com. IN SPF « v=spf1 a mx -all » le domaine autorise et valide le SPF en version …