wmail: fixed config typo.
The old spelling is still supported.
This commit is contained in:
parent
5b50ebaefb
commit
98872a4c14
|
@ -62,9 +62,9 @@ Description:
|
||||||
rc-file statement: Mail.ShowOnlyNew = Yes|No
|
rc-file statement: Mail.ShowOnlyNew = Yes|No
|
||||||
default value : No
|
default value : No
|
||||||
|
|
||||||
item : mail check intervall (sec)
|
item : mail check interval (sec)
|
||||||
cmd-line option : -i <num>
|
cmd-line option : -i <num>
|
||||||
rc-file statement: Mail.CheckIntervall = <num>
|
rc-file statement: Mail.CheckInterval = <num>
|
||||||
default value : 1
|
default value : 1
|
||||||
|
|
||||||
item : consider status-field (not used when in maildir mode)
|
item : consider status-field (not used when in maildir mode)
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
// Window.Button.Command = "string"
|
// Window.Button.Command = "string"
|
||||||
// Mail.MailBox = "string"
|
// Mail.MailBox = "string"
|
||||||
// Mail.ChecksumFile = "string"
|
// Mail.ChecksumFile = "string"
|
||||||
// Mail.CheckIntervall = number
|
// Mail.CheckInterval = number
|
||||||
// Mail.ShowOnlyNew = On|Off
|
// Mail.ShowOnlyNew = On|Off
|
||||||
// Mail.SkipSender = "string"
|
// Mail.SkipSender = "string"
|
||||||
// Mail.OnNew.Command = "string"
|
// Mail.OnNew.Command = "string"
|
||||||
|
@ -314,7 +314,7 @@ void ReadConfigFile( const char *configFile, bool resetConfigStrings )
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( PREFIX_MATCHES( id, "Mail.CheckIntervall", false ))
|
if( PREFIX_MATCHES( id, "Mail.CheckInterval", false ))
|
||||||
{
|
{
|
||||||
if( !( config.givenOptions & CL_CHECKINTERVAL ))
|
if( !( config.givenOptions & CL_CHECKINTERVAL ))
|
||||||
ReadInt( value, line, &config.checkInterval );
|
ReadInt( value, line, &config.checkInterval );
|
||||||
|
|
|
@ -40,7 +40,7 @@ Mail.ShowOnlyNew = Yes
|
||||||
|
|
||||||
# mail-check interval in seconds
|
# mail-check interval in seconds
|
||||||
# integer value, default: 1
|
# integer value, default: 1
|
||||||
Mail.CheckIntervall = 5
|
Mail.CheckInterval = 5
|
||||||
|
|
||||||
# setup the ticker-line: allowed values are: Address | NickName | FamilyName
|
# setup the ticker-line: allowed values are: Address | NickName | FamilyName
|
||||||
# enum value, default: Address
|
# enum value, default: Address
|
||||||
|
|
Loading…
Reference in a new issue