Code formatting

This commit is contained in:
Alexis Mousset
2014-11-14 02:18:36 +01:00
parent 2a1961c659
commit 7aac045856
4 changed files with 21 additions and 16 deletions

View File

@@ -50,9 +50,10 @@ fn main() {
let program = args[0].clone();
let description = format!("Usage: {0} [options...] recipients\n\n\
This program reads a message on standard input until it reaches EOF,\
then tries to send it using the given paramters.\n\n\
Example: {0} -r user@example.org user@example.com < message.txt", program);
This program reads a message on standard input until it reaches\
EOF, then tries to send it using the given paramters.\n\n\
Example: {0} -r user@example.org user@example.com < message.txt",
program);
let opts = [
optopt("r", "reverse-path", "set the sender address", "FROM_ADDRESS"),