wmail: fixed some typo's.
This commit is contained in:
parent
bd70588098
commit
85d207d4af
2 changed files with 6 additions and 6 deletions
|
@ -8,7 +8,7 @@ Contact : Window Maker Developers <wmaker-dev@googlegroups.com>
|
||||||
Description:
|
Description:
|
||||||
|
|
||||||
This is wmail - a nifty Window Maker docklet watching your inbox, which is
|
This is wmail - a nifty Window Maker docklet watching your inbox, which is
|
||||||
either a ordinary mbox or a directory conforming to qmails Maildir format.
|
either a ordinary mbox or a directory conforming to qmail's Maildir format.
|
||||||
It provides a nice little GUI displaying some useful pieces of information
|
It provides a nice little GUI displaying some useful pieces of information
|
||||||
about your inbox (as many other nice wm-apps doing nearly the same thing...).
|
about your inbox (as many other nice wm-apps doing nearly the same thing...).
|
||||||
Per default it uses the $MAIL environment-variable to locate the inbox you
|
Per default it uses the $MAIL environment-variable to locate the inbox you
|
||||||
|
@ -19,7 +19,7 @@ Description:
|
||||||
|
|
||||||
- a mail-icon in the upper-left if your inbox contains some mails
|
- a mail-icon in the upper-left if your inbox contains some mails
|
||||||
- a frequently flashing "M@iL" in the upper-right if there are unread mails
|
- a frequently flashing "M@iL" in the upper-right if there are unread mails
|
||||||
- a ticker displaying either complete mail-address, it's name-part or the
|
- a ticker displaying either complete mail-address, its name-part or the
|
||||||
full sender's name (without the "-n" option each sender found in the inbox
|
full sender's name (without the "-n" option each sender found in the inbox
|
||||||
is tickered, else only the unread ones)
|
is tickered, else only the unread ones)
|
||||||
- the number of new and read emails found (or the number of unread messages
|
- the number of new and read emails found (or the number of unread messages
|
||||||
|
@ -173,10 +173,10 @@ Compile:
|
||||||
|
|
||||||
Simply follow these steps:
|
Simply follow these steps:
|
||||||
1. Call "./configure", try "./configure --help" for a list of options.
|
1. Call "./configure", try "./configure --help" for a list of options.
|
||||||
2. Call "make" to build the binary (or gmake if make is't GNU make compliant)
|
2. Call "make" to build the binary (or gmake if make isn't GNU make compliant)
|
||||||
|
|
||||||
If compiling does not succeed due to missed header files or libraries
|
If compiling does not succeed due to missed header files or libraries
|
||||||
you have to make use of configures `--includedir=DIR' and/or `--libdir=DIR'
|
you have to make use of configure's `--includedir=DIR' and/or `--libdir=DIR'
|
||||||
cmdline options in order to specify paths to those files.
|
cmdline options in order to specify paths to those files.
|
||||||
|
|
||||||
Porting:
|
Porting:
|
||||||
|
|
|
@ -226,7 +226,7 @@ int main( int argc, char **argv )
|
||||||
DACallbacks callbacks = { NULL, &ButtonPressed, &ButtonReleased,
|
DACallbacks callbacks = { NULL, &ButtonPressed, &ButtonReleased,
|
||||||
NULL, NULL, NULL, &TimedOut };
|
NULL, NULL, NULL, &TimedOut };
|
||||||
|
|
||||||
// read the config file and overide the default-settings
|
// read the config file and override the default-settings
|
||||||
ReadConfigFile( false );
|
ReadConfigFile( false );
|
||||||
|
|
||||||
if( config.checksumFileName == NULL ) {
|
if( config.checksumFileName == NULL ) {
|
||||||
|
@ -245,7 +245,7 @@ int main( int argc, char **argv )
|
||||||
|
|
||||||
TRACE( "using checksum-file \"%s\"\n", config.checksumFileName );
|
TRACE( "using checksum-file \"%s\"\n", config.checksumFileName );
|
||||||
|
|
||||||
// parse cmdline-args and overide defaults and cfg-file settings
|
// parse cmdline-args and override defaults and cfg-file settings
|
||||||
DAParseArguments( argc, argv, options,
|
DAParseArguments( argc, argv, options,
|
||||||
sizeof(options) / sizeof(DAProgramOption),
|
sizeof(options) / sizeof(DAProgramOption),
|
||||||
WMAIL_NAME, WMAIL_VERSION );
|
WMAIL_NAME, WMAIL_VERSION );
|
||||||
|
|
Loading…
Reference in a new issue