|
Lines 2644-2649
Create [.filename]#/usr/local/etc/mail/secrets# with the following content:
Link Here
|
| 2644 |
freebsd yourusername:yourpassword |
2644 |
freebsd yourusername:yourpassword |
| 2645 |
.... |
2645 |
.... |
| 2646 |
|
2646 |
|
|
|
2647 |
==== |
| 2648 |
[[smtp-setup-local-exim]] |
| 2649 |
.Using Exim |
| 2650 |
[example] |
| 2651 |
==== |
| 2652 |
|
| 2653 |
To tell a local Exim instance that anything from `_yourusername_@FreeBSD.org` |
| 2654 |
should be forwarded to the FreeBSD.org servers, add this to your [.filename]#configure#: |
| 2655 |
|
| 2656 |
[.programlisting] |
| 2657 |
.... |
| 2658 |
Routers section: (at the top of the list): |
| 2659 |
freebsd_send: |
| 2660 |
driver = manualroute |
| 2661 |
domains = !+local_domains |
| 2662 |
transport = freebsd_smtp |
| 2663 |
route_data = ${lookup {${lc:$sender_address}} lsearch {/usr/local/etc/exim/freebsd_send}} |
| 2664 |
|
| 2665 |
Transport Section: |
| 2666 |
freebsd_smtp: |
| 2667 |
driver = smtp |
| 2668 |
tls_certificate=<your certificate> |
| 2669 |
tls_privatekey=<your certificate private key> |
| 2670 |
tls_require_ciphers = EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH+AESGCM:EECDH:EDH+AESGCM:EDH+aRSA:HIGH:!MEDIUM:!LOW:!aNULL:!eNULL:!LOW:!RC4:!MD5:!EXP:!PSK:!SRP:!DSS |
| 2671 |
dkim_domain = <Your DKIM domain> |
| 2672 |
dkim_selector = <your DKIM selector> |
| 2673 |
dkim_private_key= <your DKIM Private key> |
| 2674 |
dnssec_request_domains = * |
| 2675 |
hosts_require_auth = smtp.freebsd.org |
| 2676 |
|
| 2677 |
Authenticators: |
| 2678 |
fixed_plain: |
| 2679 |
driver = plaintext |
| 2680 |
public_name = PLAIN |
| 2681 |
client_send = ^<your freebsd username, with /mail appended>^<PASSWORD HERE> |
| 2682 |
.... |
| 2683 |
|
| 2684 |
Create [.filename]#/usr/local/etc/exim/freebsd_send# with the following content: |
| 2685 |
|
| 2686 |
[.programlisting] |
| 2687 |
.... |
| 2688 |
<your freebsd username>@freebsd.org:smtp.freebsd.org::587 |
| 2689 |
.... |
| 2690 |
|
| 2647 |
==== |
2691 |
==== |
| 2648 |
|
2692 |
|
| 2649 |
[[mentors]] |
2693 |
[[mentors]] |