Skip to content
Snippets Groups Projects
Commit 338fecfd authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#1896 - Bug in mailfilter file when maildrop tries to create the...

Fixed: FS#1896 - Bug in mailfilter file when maildrop tries to create the mailsize file of non existing accounts
parent a2b61978
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,11 @@ if ( $RETURNCODE == 0 )
}
# Create a mailsize file
`test -e {dist_postfix_vmail_mailbox_base}/$HOST/$USER`
if ( $RETURNCODE == 0 )
{
`echo $SIZE >> {dist_postfix_vmail_mailbox_base}/$HOST/$USER/ispconfig_mailsize`
}
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment