00001
00002 #ifndef KMAIL_OPTIONS_H
00003 #define KMAIL_OPTIONS_H
00004
00005 #include <kcmdlineargs.h>
00006 #include <klocale.h>
00007
00008 KCmdLineOptions kmail_options[] =
00009 {
00010 { "s", 0 , 0 },
00011 { "subject <subject>", I18N_NOOP("Set subject of message"), 0 },
00012 { "c", 0 , 0 },
00013 { "cc <address>", I18N_NOOP("Send CC: to 'address'"), 0 },
00014 { "b", 0 , 0 },
00015 { "bcc <address>", I18N_NOOP("Send BCC: to 'address'"), 0 },
00016 { "h", 0 , 0 },
00017 { "header <header>", I18N_NOOP("Add 'header' to message"), 0 },
00018 { "msg <file>", I18N_NOOP("Read message body from 'file'"), 0 },
00019 { "body <text>", I18N_NOOP("Set body of message"), 0 },
00020 { "attach <url>", I18N_NOOP("Add an attachment to the mail. This can be repeated"), 0 },
00021 { "check", I18N_NOOP("Only check for new mail"), 0 },
00022 { "composer", I18N_NOOP("Only open composer window"), 0 },
00023 { "view <url>", I18N_NOOP("View the given message file" ), 0 },
00024 { "+[address|URL]", I18N_NOOP("Send message to 'address' resp. "
00025 "attach the file the 'URL' points "
00026 "to"), 0 },
00027
00028 KCmdLineLastOption
00029 };
00030
00031 #endif