![]() |
|
SPONSORED LINKS BY GOOGLE |
|
2
5th September 09:46
External User
Posts: 1
|
In article <40a04532$0$16587$5a62ac22
@freenews.iinet.net.au>, severn@iinet.net.au says... Postfix is what we use for about 30 users. Postfix + SASL (see chapter 12 in "Postfix, The Definitive Guide"). However, your laptop users should be using TLS (basically SSL encryption) at a minimum if they are connecting to the machine from the outside. So as to not send their userids/passwords via plain-text across the wire. TLS is covered in chapter 13. Alternately, you can have your laptop users use SSH to tunnel into the network. http://www.postfix.org/postconf.5.html Parameter name is: always_bcc Make sure you're open and honest about the fact that this system logs all inbound/outbound e-mail... I'm not 100% sure what the legal climate is regarding archving of mail, or whether it's merely setting up lawyer bait. I believe you change this in master.cf (not 100% sure). The TLS port is typically something other then port 25 I think tcp/465 is the default, some folks use 587, others use port #s above 1024 (GeekMail used 2525, IIRC). One message that I saw indicated that there is no fixed port for SMTP+TLS. Unfortunately, you're beyond what I've had a chance to muck with in Postfix (I wasn't the one who set it up... and I'm still learning how to maintain it). |
|
|
SPONSORED LINKS BY GOOGLE |
|
4
5th September 14:14
External User
Posts: 1
|
This is easier to fix with iptables at the router/fw.
Assuming the ip of your mailserver is 192.168.128.1 iptables -t nat -A PREROUTING -p tcp -m tcp --dport 1025 \ -j DNAT --to-destination 192.168.128.1:25 /klacke -- Claes Wikstrom -- Caps lock is nowhere and http://www.hyber.org -- everything is under control |
|
|
6
5th September 18:41
External User
Posts: 1
|
Not correct, the REDIR will not change the source IP. As a matter of fact,
when I run this scheme, I do run the REDIR on the same machine as the MTA. The MTA will not notice anything out of the ordinary, it will be precicely as if the sending MTA (or client) connected to port 25. Absolutely, and using REDIR doesn't change that. /klacke -- Claes Wikstrom -- Caps lock is nowhere and http://www.hyber.org -- everything is under control |
|
|
|