Annotation For README
Logged in as anonymous

Lines of README from check-in da7fc7983d that are changed by the sequence of edits moving toward check-in 338af36a00:

                         1: First of all make sure to never listen on public IPs and always put sockets in
                         2: directories not acessible by just about everyone on your system. Though
                         3: listening on 127.0.0.1:XXXX is equivalent to creating a world-writable socket.
                         4: 
                         5: To catch bounces (so they wouldn't stuck in upper mail server) make sure sender
                         6: envelope address is real as required by SaMoToP. For example Postfix has to be
                         7: tweaked like this:
                         8: 
                         9: $config_directory/main.cf:
                        10: 	smtp_generic_maps = hash:$config_directory/generic
                        11: 
                        12: $config_directory/generic:
                        13: 	""	postmaster@example.com
                        14: 	<>	postmaster@example.com
                        15: 
                        16: Actually not sure which one works...