mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-19 10:25:27 +00:00
Monotone-Parent: 0869cb2e3bedff16fb0985d9bde1c2c2a5c80820
Monotone-Revision: ac0d12f89b420e5f1e825cebddb440417e76ce4b Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2012-04-20T13:37:46
This commit is contained in:
@@ -504,6 +504,8 @@ NSString *SOGoWeekStartFirstFullWeek = @"FirstFullWeek";
|
||||
|
||||
- (void) setMailSignature: (NSString *) newValue
|
||||
{
|
||||
if ([newValue length] == 0)
|
||||
newValue = nil;
|
||||
[self setObject: newValue forKey: @"SOGoMailSignature"];
|
||||
}
|
||||
|
||||
@@ -531,6 +533,30 @@ NSString *SOGoWeekStartFirstFullWeek = @"FirstFullWeek";
|
||||
return signaturePlacement;
|
||||
}
|
||||
|
||||
- (void) setMailCustomFullName: (NSString *) newValue
|
||||
{
|
||||
if ([newValue length] == 0)
|
||||
newValue = nil;
|
||||
[self setObject: newValue forKey: @"SOGoMailCustomFullName"];
|
||||
}
|
||||
|
||||
- (NSString *) mailCustomFullName
|
||||
{
|
||||
return [self stringForKey: @"SOGoMailCustomFullName"];
|
||||
}
|
||||
|
||||
- (void) setMailCustomEmail: (NSString *) newValue
|
||||
{
|
||||
if ([newValue length] == 0)
|
||||
newValue = nil;
|
||||
[self setObject: newValue forKey: @"SOGoMailCustomEmail"];
|
||||
}
|
||||
|
||||
- (NSString *) mailCustomEmail
|
||||
{
|
||||
return [self stringForKey: @"SOGoMailCustomEmail"];
|
||||
}
|
||||
|
||||
- (void) setMailReplyTo: (NSString *) newValue
|
||||
{
|
||||
if ([newValue length] == 0)
|
||||
|
||||
Reference in New Issue
Block a user