Created
September 7, 2011 20:13
-
-
Save hgdeoro/1201600 to your computer and use it in GitHub Desktop.
Config. de Exim para NO realizar envios SMTP y guardar todos los emails recibidos
This file contains hidden or 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
| primary_hostname = some.name.example.com | |
| acl_smtp_rcpt = acl_check_rcpt | |
| acl_smtp_data = acl_check_data | |
| never_users = root | |
| # host_lookup = * | |
| # rfc1413_hosts = * | |
| rfc1413_query_timeout = 0s | |
| ignore_bounce_errors_after = 1d | |
| timeout_frozen_after = 1d | |
| ###################################################################### | |
| # ACL CONFIGURATION # | |
| # Specifies access control lists for incoming SMTP mail # | |
| ###################################################################### | |
| begin acl | |
| acl_check_rcpt: | |
| deny message = Restricted characters in address | |
| local_parts = ^[./|] : ^.*[@%!] : ^.*/\\.\\./ | |
| accept | |
| acl_check_data: | |
| accept | |
| ###################################################################### | |
| # ROUTERS CONFIGURATION # | |
| # Specifies how addresses are handled # | |
| ###################################################################### | |
| # THE ORDER IN WHICH THE ROUTERS ARE DEFINED IS IMPORTANT! # | |
| # An address is passed to each router in turn until it is accepted. # | |
| ###################################################################### | |
| begin routers | |
| localuser: | |
| driver = accept | |
| transport = local_delivery | |
| ###################################################################### | |
| # TRANSPORTS CONFIGURATION # | |
| ###################################################################### | |
| # ORDER DOES NOT MATTER # | |
| # Only one appropriate transport is called for each delivery. # | |
| ###################################################################### | |
| begin transports | |
| local_delivery: | |
| driver = appendfile | |
| maildir_format = true | |
| directory = /var/mail/mails_enviados | |
| user = mails_enviados | |
| # file = /var/mail/$local_part | |
| # delivery_date_add | |
| # envelope_to_add | |
| # return_path_add | |
| # group = mail | |
| # mode = 0660 | |
| ###################################################################### | |
| # RETRY CONFIGURATION # | |
| ###################################################################### | |
| begin retry | |
| # Address or Domain Error Retries | |
| # ----------------- ----- ------- | |
| * * F,2h,15m; G,16h,1h,1.5; F,4d,6h | |
| ###################################################################### | |
| # REWRITE CONFIGURATION # | |
| ###################################################################### | |
| begin rewrite | |
| ###################################################################### | |
| # AUTHENTICATION CONFIGURATION # | |
| ###################################################################### | |
| begin authenticators | |
| ###################################################################### | |
| # CONFIGURATION FOR local_scan() # | |
| ###################################################################### | |
| # begin local_scan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment