fix split
This commit is contained in:
parent
25516432f5
commit
b6a52b6137
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class ImapFilter:
|
|||
def _create_sieve_script(self, filters, user_email):
|
||||
owner = None
|
||||
group = None
|
||||
mail_domain, mail_user = user_email.split('@')
|
||||
mail_user, mail_domain = user_email.split('@')
|
||||
sieve_scripts_path = os.path.join(
|
||||
self.config['mail_home_path'],
|
||||
mail_domain,
|
||||
|
|
Loading…
Reference in a new issue