2 #ifndef KMAIL_OPTIONS_H 3 #define KMAIL_OPTIONS_H 5 #include <tdecmdlineargs.h> 8 TDECmdLineOptions kmail_options[] = 11 { "subject <subject>", I18N_NOOP( "Set subject of message"), 0 }, 13 { "cc <address>", I18N_NOOP( "Send CC: to 'address'"), 0 }, 15 { "bcc <address>", I18N_NOOP( "Send BCC: to 'address'"), 0 }, 17 { "header <header>", I18N_NOOP( "Add 'header' to message"), 0 }, 18 { "msg <file>", I18N_NOOP( "Read message body from 'file'"), 0 }, 19 { "body <text>", I18N_NOOP( "Set body of message"), 0 }, 20 { "attach <url>", I18N_NOOP( "Add an attachment to the mail. This can be repeated"), 0 }, 21 { "check", I18N_NOOP( "Only check for new mail"), 0 }, 22 { "composer", I18N_NOOP( "Only open composer window"), 0 }, 23 { "view <url>", I18N_NOOP( "View the given message file" ), 0 }, 24 { "+[address|URL]", I18N_NOOP( "Send message to 'address' resp. " 25 "attach the file the 'URL' points "
|