Thread: [Postfixadmin-devel] Quota not working ?
Brought to you by:
christian_boltz,
gingerdog
From: Marko W. <mar...@sa...> - 2008-11-05 00:14:35
|
I set this in the postfixadmin config.file = // Default Domain Values // Specify your default values below. Quota in MB. $CONF['aliases'] = '15'; $CONF['mailboxes'] = '15'; $CONF['maxquota'] = '15'; // Quota // When you want to enforce quota for your mailbox users set this to 'YES'. $CONF['quota'] = 'YES'; // You can either use '1024000' or '1048576' $CONF['quota_multiplier'] = '15728640'; i gave on postfix admin backend the domain = domain settings --------- aliase = -1 mailbox = 12 max quota 15 i created a mailbox for this domain and set for this mailbox 15mb quota i send an 11mb mp3 to this box and get this = This is the mail system at host xxxxxxxx.de. I'm sorry to have to inform you that your message could not be delivered to one or more recipients. It's attached below. For further assistance, please send mail to postmaster. If you do so, please include this problem report. You can delete your own text from the attached returned message. The mail system <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of server xxxxxxx.de[xxx.xxx.243.37] Any ideas why i get size limit 10240000 ???? i use postfix-dovecot-postfixadmin thx marko from hamburg |
From: Michiel v. B. <pos...@va...> - 2008-11-05 08:03:10
|
On 00:58, Wed 05 Nov 08, Marko Weber wrote: > I set this in the postfixadmin config.file = > > // Default Domain Values > // Specify your default values below. Quota in MB. > $CONF['aliases'] = '15'; > $CONF['mailboxes'] = '15'; > $CONF['maxquota'] = '15'; > > // Quota > // When you want to enforce quota for your mailbox users set this to 'YES'. > $CONF['quota'] = 'YES'; > // You can either use '1024000' or '1048576' > $CONF['quota_multiplier'] = '15728640'; > > > i gave on postfix admin backend the domain = > > domain settings > --------- > aliase = -1 > mailbox = 12 > max quota 15 > > > > i created a mailbox for this domain and set for this mailbox 15mb quota > > i send an 11mb mp3 to this box and get this = > > This is the mail system at host xxxxxxxx.de. > > I'm sorry to have to inform you that your message could not > be delivered to one or more recipients. It's attached below. > > For further assistance, please send mail to postmaster. > > If you do so, please include this problem report. You can > delete your own text from the attached returned message. > > The mail system > > <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of > server xxxxxxx.de[xxx.xxx.243.37] > > Any ideas why i get size limit 10240000 ???? In the main postfix configuration you can set the maximum message size. As you can see, the default is 10MB per message. To remove all size limits and let the quota actually apply try setting this in your main.cf and reload postfix: mailbox_size_limit = 0 message_size_limit = 0 virtual_mailbox_limit = 0 Good luck. -- Michiel van Baak mi...@va... http://michiel.vanbaak.eu GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x71C946BD "Why is it drug addicts and computer aficionados are both called users?" |
From: Marko W. <mar...@sa...> - 2008-11-06 16:20:35
|
Hi Michiel, i tried your hints. but seems not to go with quota. i send an 11mb mp3 to user and after that an 6mb mp3 the quota is set in postfixadmin to 15mb, so it should send a mail that quota is reached or not ? do i have to set any special on postfixadmin config ? maybe its the quota multiplier ? in the postfixadmin config for quota is this = // Default Domain Values // Specify your default values below. Quota in MB. $CONF['aliases'] = '15'; $CONF['mailboxes'] = '15'; $CONF['maxquota'] = '15'; // Quota // When you want to enforce quota for your mailbox users set this to 'YES'. $CONF['quota'] = 'YES'; // You can either use '1024000' or '1048576' $CONF['quota_multiplier'] = '1024000'; 10240000 is also in the mysql db as "quota" in the quota field for the mail where i send the mp3´s any ideas ? marko Michiel van Baak schrieb: > On 00:58, Wed 05 Nov 08, Marko Weber wrote: > >> I set this in the postfixadmin config.file = >> >> // Default Domain Values >> // Specify your default values below. Quota in MB. >> $CONF['aliases'] = '15'; >> $CONF['mailboxes'] = '15'; >> $CONF['maxquota'] = '15'; >> >> // Quota >> // When you want to enforce quota for your mailbox users set this to 'YES'. >> $CONF['quota'] = 'YES'; >> // You can either use '1024000' or '1048576' >> $CONF['quota_multiplier'] = '15728640'; >> >> >> i gave on postfix admin backend the domain = >> >> domain settings >> --------- >> aliase = -1 >> mailbox = 12 >> max quota 15 >> >> >> >> i created a mailbox for this domain and set for this mailbox 15mb quota >> >> i send an 11mb mp3 to this box and get this = >> >> This is the mail system at host xxxxxxxx.de. >> >> I'm sorry to have to inform you that your message could not >> be delivered to one or more recipients. It's attached below. >> >> For further assistance, please send mail to postmaster. >> >> If you do so, please include this problem report. You can >> delete your own text from the attached returned message. >> >> The mail system >> >> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of >> server xxxxxxx.de[xxx.xxx.243.37] >> >> Any ideas why i get size limit 10240000 ???? >> > > In the main postfix configuration you can set the maximum message size. > As you can see, the default is 10MB per message. > > To remove all size limits and let the quota actually apply try setting > this in your main.cf and reload postfix: > > mailbox_size_limit = 0 > message_size_limit = 0 > virtual_mailbox_limit = 0 > > Good luck. > |
From: Michiel v. B. <pos...@va...> - 2008-11-06 17:25:37
|
On 17:20, Thu 06 Nov 08, Marko Weber wrote: > Hi Michiel, > i tried your hints. > but seems not to go with quota. > > i send an 11mb mp3 to user and after that an 6mb mp3 > the quota is set in postfixadmin to 15mb, so it should send a mail that > quota is reached or not ? I think it will send the email on the next mail. 11 mb != quota reached. 6mb = one email so I think it will go through. Can you test by sending yet another email now that the user is over quota? > > do i have to set any special on postfixadmin config ? > maybe its the quota multiplier ? > > > in the postfixadmin config for quota is this = > > // Default Domain Values > // Specify your default values below. Quota in MB. > $CONF['aliases'] = '15'; > $CONF['mailboxes'] = '15'; > $CONF['maxquota'] = '15'; > > // Quota > // When you want to enforce quota for your mailbox users set this to 'YES'. > $CONF['quota'] = 'YES'; > // You can either use '1024000' or '1048576' > $CONF['quota_multiplier'] = '1024000'; > > 10240000 is also in the mysql db as "quota" in the quota field for the > mail where i send the mp3?s > > any ideas ? > > marko > > > > > > Michiel van Baak schrieb: > > On 00:58, Wed 05 Nov 08, Marko Weber wrote: > > > >> I set this in the postfixadmin config.file = > >> > >> // Default Domain Values > >> // Specify your default values below. Quota in MB. > >> $CONF['aliases'] = '15'; > >> $CONF['mailboxes'] = '15'; > >> $CONF['maxquota'] = '15'; > >> > >> // Quota > >> // When you want to enforce quota for your mailbox users set this to 'YES'. > >> $CONF['quota'] = 'YES'; > >> // You can either use '1024000' or '1048576' > >> $CONF['quota_multiplier'] = '15728640'; > >> > >> > >> i gave on postfix admin backend the domain = > >> > >> domain settings > >> --------- > >> aliase = -1 > >> mailbox = 12 > >> max quota 15 > >> > >> > >> > >> i created a mailbox for this domain and set for this mailbox 15mb quota > >> > >> i send an 11mb mp3 to this box and get this = > >> > >> This is the mail system at host xxxxxxxx.de. > >> > >> I'm sorry to have to inform you that your message could not > >> be delivered to one or more recipients. It's attached below. > >> > >> For further assistance, please send mail to postmaster. > >> > >> If you do so, please include this problem report. You can > >> delete your own text from the attached returned message. > >> > >> The mail system > >> > >> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of > >> server xxxxxxx.de[xxx.xxx.243.37] > >> > >> Any ideas why i get size limit 10240000 ???? > >> > > > > In the main postfix configuration you can set the maximum message size. > > As you can see, the default is 10MB per message. > > > > To remove all size limits and let the quota actually apply try setting > > this in your main.cf and reload postfix: > > > > mailbox_size_limit = 0 > > message_size_limit = 0 > > virtual_mailbox_limit = 0 > > > > Good luck. > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Postfixadmin-devel mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel -- Michiel van Baak mi...@va... http://michiel.vanbaak.eu GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x71C946BD "Why is it drug addicts and computer aficionados are both called users?" |
From: Marko W. <mar...@sa...> - 2008-11-06 19:28:10
|
Hello Michiel, i sent 2 further mails with 4mb attachement no quota warning, mails was delivered to user. is the "multiplier" in the postfixadmin the wrong one ? or is there a setting that MUST be in main.cf of postfix ? marko Michiel van Baak schrieb: > On 17:20, Thu 06 Nov 08, Marko Weber wrote: > >> Hi Michiel, >> i tried your hints. >> but seems not to go with quota. >> >> i send an 11mb mp3 to user and after that an 6mb mp3 >> the quota is set in postfixadmin to 15mb, so it should send a mail that >> quota is reached or not ? >> > > I think it will send the email on the next mail. > 11 mb != quota reached. 6mb = one email so I think it will go through. > Can you test by sending yet another email now that the user is over > quota? > > >> do i have to set any special on postfixadmin config ? >> maybe its the quota multiplier ? >> >> >> in the postfixadmin config for quota is this = >> >> // Default Domain Values >> // Specify your default values below. Quota in MB. >> $CONF['aliases'] = '15'; >> $CONF['mailboxes'] = '15'; >> $CONF['maxquota'] = '15'; >> >> // Quota >> // When you want to enforce quota for your mailbox users set this to 'YES'. >> $CONF['quota'] = 'YES'; >> // You can either use '1024000' or '1048576' >> $CONF['quota_multiplier'] = '1024000'; >> >> 10240000 is also in the mysql db as "quota" in the quota field for the >> mail where i send the mp3?s >> >> any ideas ? >> >> marko >> >> >> >> >> >> Michiel van Baak schrieb: >> >>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: >>> >>> >>>> I set this in the postfixadmin config.file = >>>> >>>> // Default Domain Values >>>> // Specify your default values below. Quota in MB. >>>> $CONF['aliases'] = '15'; >>>> $CONF['mailboxes'] = '15'; >>>> $CONF['maxquota'] = '15'; >>>> >>>> // Quota >>>> // When you want to enforce quota for your mailbox users set this to 'YES'. >>>> $CONF['quota'] = 'YES'; >>>> // You can either use '1024000' or '1048576' >>>> $CONF['quota_multiplier'] = '15728640'; >>>> >>>> >>>> i gave on postfix admin backend the domain = >>>> >>>> domain settings >>>> --------- >>>> aliase = -1 >>>> mailbox = 12 >>>> max quota 15 >>>> >>>> >>>> >>>> i created a mailbox for this domain and set for this mailbox 15mb quota >>>> >>>> i send an 11mb mp3 to this box and get this = >>>> >>>> This is the mail system at host xxxxxxxx.de. >>>> >>>> I'm sorry to have to inform you that your message could not >>>> be delivered to one or more recipients. It's attached below. >>>> >>>> For further assistance, please send mail to postmaster. >>>> >>>> If you do so, please include this problem report. You can >>>> delete your own text from the attached returned message. >>>> >>>> The mail system >>>> >>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of >>>> server xxxxxxx.de[xxx.xxx.243.37] >>>> >>>> Any ideas why i get size limit 10240000 ???? >>>> >>>> >>> In the main postfix configuration you can set the maximum message size. >>> As you can see, the default is 10MB per message. >>> >>> To remove all size limits and let the quota actually apply try setting >>> this in your main.cf and reload postfix: >>> >>> mailbox_size_limit = 0 >>> message_size_limit = 0 >>> virtual_mailbox_limit = 0 >>> >>> Good luck. >>> >>> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >> Build the coolest Linux based applications with Moblin SDK & win great prizes >> Grand prize is a trip for two to an Open Source event anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Postfixadmin-devel mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >> > > |
From: Michiel v. B. <pos...@va...> - 2008-11-07 08:00:49
|
On 20:28, Thu 06 Nov 08, Marko Weber wrote: > Hello Michiel, > i sent 2 further mails with 4mb attachement > no quota warning, mails was delivered to user. > > is the "multiplier" in the postfixadmin the wrong one ? > or is there a setting that MUST be in main.cf of postfix ? I now see/remember that I'm using maildrop as LDA. So in my setup maildrop is handling the quota stuff. I started to document my setup some time ago, and I need to finish it. To read tho stuff I already wrote down go here: http://michiel.vanbaak.info/postfixamavismysql.htm Good luck > > marko > > Michiel van Baak schrieb: > > On 17:20, Thu 06 Nov 08, Marko Weber wrote: > > > >> Hi Michiel, > >> i tried your hints. > >> but seems not to go with quota. > >> > >> i send an 11mb mp3 to user and after that an 6mb mp3 > >> the quota is set in postfixadmin to 15mb, so it should send a mail that > >> quota is reached or not ? > >> > > > > I think it will send the email on the next mail. > > 11 mb != quota reached. 6mb = one email so I think it will go through. > > Can you test by sending yet another email now that the user is over > > quota? > > > > > >> do i have to set any special on postfixadmin config ? > >> maybe its the quota multiplier ? > >> > >> > >> in the postfixadmin config for quota is this = > >> > >> // Default Domain Values > >> // Specify your default values below. Quota in MB. > >> $CONF['aliases'] = '15'; > >> $CONF['mailboxes'] = '15'; > >> $CONF['maxquota'] = '15'; > >> > >> // Quota > >> // When you want to enforce quota for your mailbox users set this to 'YES'. > >> $CONF['quota'] = 'YES'; > >> // You can either use '1024000' or '1048576' > >> $CONF['quota_multiplier'] = '1024000'; > >> > >> 10240000 is also in the mysql db as "quota" in the quota field for the > >> mail where i send the mp3?s > >> > >> any ideas ? > >> > >> marko > >> > >> > >> > >> > >> > >> Michiel van Baak schrieb: > >> > >>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: > >>> > >>> > >>>> I set this in the postfixadmin config.file = > >>>> > >>>> // Default Domain Values > >>>> // Specify your default values below. Quota in MB. > >>>> $CONF['aliases'] = '15'; > >>>> $CONF['mailboxes'] = '15'; > >>>> $CONF['maxquota'] = '15'; > >>>> > >>>> // Quota > >>>> // When you want to enforce quota for your mailbox users set this to 'YES'. > >>>> $CONF['quota'] = 'YES'; > >>>> // You can either use '1024000' or '1048576' > >>>> $CONF['quota_multiplier'] = '15728640'; > >>>> > >>>> > >>>> i gave on postfix admin backend the domain = > >>>> > >>>> domain settings > >>>> --------- > >>>> aliase = -1 > >>>> mailbox = 12 > >>>> max quota 15 > >>>> > >>>> > >>>> > >>>> i created a mailbox for this domain and set for this mailbox 15mb quota > >>>> > >>>> i send an 11mb mp3 to this box and get this = > >>>> > >>>> This is the mail system at host xxxxxxxx.de. > >>>> > >>>> I'm sorry to have to inform you that your message could not > >>>> be delivered to one or more recipients. It's attached below. > >>>> > >>>> For further assistance, please send mail to postmaster. > >>>> > >>>> If you do so, please include this problem report. You can > >>>> delete your own text from the attached returned message. > >>>> > >>>> The mail system > >>>> > >>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of > >>>> server xxxxxxx.de[xxx.xxx.243.37] > >>>> > >>>> Any ideas why i get size limit 10240000 ???? > >>>> > >>>> > >>> In the main postfix configuration you can set the maximum message size. > >>> As you can see, the default is 10MB per message. > >>> > >>> To remove all size limits and let the quota actually apply try setting > >>> this in your main.cf and reload postfix: > >>> > >>> mailbox_size_limit = 0 > >>> message_size_limit = 0 > >>> virtual_mailbox_limit = 0 > >>> > >>> Good luck. > >>> > >>> > >> ------------------------------------------------------------------------- > >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >> Build the coolest Linux based applications with Moblin SDK & win great prizes > >> Grand prize is a trip for two to an Open Source event anywhere in the world > >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >> _______________________________________________ > >> Postfixadmin-devel mailing list > >> Pos...@li... > >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >> > > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Postfixadmin-devel mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel -- Michiel van Baak mi...@va... http://michiel.vanbaak.eu GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x71C946BD "Why is it drug addicts and computer aficionados are both called users?" |
From: Marko W. <mar...@sa...> - 2008-11-11 22:13:53
|
Hello Michiel, seems postfix is not able to handle quota. u got to patch it. but the patch is still not as stable in the packages. so , i leave it this way without quota.................... and wait for the day that postfix can do quota............ marko Michiel van Baak schrieb: > On 20:28, Thu 06 Nov 08, Marko Weber wrote: > >> Hello Michiel, >> i sent 2 further mails with 4mb attachement >> no quota warning, mails was delivered to user. >> >> is the "multiplier" in the postfixadmin the wrong one ? >> or is there a setting that MUST be in main.cf of postfix ? >> > > I now see/remember that I'm using maildrop as LDA. > So in my setup maildrop is handling the quota stuff. > > I started to document my setup some time ago, and I need to finish it. > To read tho stuff I already wrote down go here: > http://michiel.vanbaak.info/postfixamavismysql.htm > > Good luck > > >> marko >> >> Michiel van Baak schrieb: >> >>> On 17:20, Thu 06 Nov 08, Marko Weber wrote: >>> >>> >>>> Hi Michiel, >>>> i tried your hints. >>>> but seems not to go with quota. >>>> >>>> i send an 11mb mp3 to user and after that an 6mb mp3 >>>> the quota is set in postfixadmin to 15mb, so it should send a mail that >>>> quota is reached or not ? >>>> >>>> >>> I think it will send the email on the next mail. >>> 11 mb != quota reached. 6mb = one email so I think it will go through. >>> Can you test by sending yet another email now that the user is over >>> quota? >>> >>> >>> >>>> do i have to set any special on postfixadmin config ? >>>> maybe its the quota multiplier ? >>>> >>>> >>>> in the postfixadmin config for quota is this = >>>> >>>> // Default Domain Values >>>> // Specify your default values below. Quota in MB. >>>> $CONF['aliases'] = '15'; >>>> $CONF['mailboxes'] = '15'; >>>> $CONF['maxquota'] = '15'; >>>> >>>> // Quota >>>> // When you want to enforce quota for your mailbox users set this to 'YES'. >>>> $CONF['quota'] = 'YES'; >>>> // You can either use '1024000' or '1048576' >>>> $CONF['quota_multiplier'] = '1024000'; >>>> >>>> 10240000 is also in the mysql db as "quota" in the quota field for the >>>> mail where i send the mp3?s >>>> >>>> any ideas ? >>>> >>>> marko >>>> >>>> >>>> >>>> >>>> >>>> Michiel van Baak schrieb: >>>> >>>> >>>>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: >>>>> >>>>> >>>>> >>>>>> I set this in the postfixadmin config.file = >>>>>> >>>>>> // Default Domain Values >>>>>> // Specify your default values below. Quota in MB. >>>>>> $CONF['aliases'] = '15'; >>>>>> $CONF['mailboxes'] = '15'; >>>>>> $CONF['maxquota'] = '15'; >>>>>> >>>>>> // Quota >>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. >>>>>> $CONF['quota'] = 'YES'; >>>>>> // You can either use '1024000' or '1048576' >>>>>> $CONF['quota_multiplier'] = '15728640'; >>>>>> >>>>>> >>>>>> i gave on postfix admin backend the domain = >>>>>> >>>>>> domain settings >>>>>> --------- >>>>>> aliase = -1 >>>>>> mailbox = 12 >>>>>> max quota 15 >>>>>> >>>>>> >>>>>> >>>>>> i created a mailbox for this domain and set for this mailbox 15mb quota >>>>>> >>>>>> i send an 11mb mp3 to this box and get this = >>>>>> >>>>>> This is the mail system at host xxxxxxxx.de. >>>>>> >>>>>> I'm sorry to have to inform you that your message could not >>>>>> be delivered to one or more recipients. It's attached below. >>>>>> >>>>>> For further assistance, please send mail to postmaster. >>>>>> >>>>>> If you do so, please include this problem report. You can >>>>>> delete your own text from the attached returned message. >>>>>> >>>>>> The mail system >>>>>> >>>>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of >>>>>> server xxxxxxx.de[xxx.xxx.243.37] >>>>>> >>>>>> Any ideas why i get size limit 10240000 ???? >>>>>> >>>>>> >>>>>> >>>>> In the main postfix configuration you can set the maximum message size. >>>>> As you can see, the default is 10MB per message. >>>>> >>>>> To remove all size limits and let the quota actually apply try setting >>>>> this in your main.cf and reload postfix: >>>>> >>>>> mailbox_size_limit = 0 >>>>> message_size_limit = 0 >>>>> virtual_mailbox_limit = 0 >>>>> >>>>> Good luck. >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >>>> Build the coolest Linux based applications with Moblin SDK & win great prizes >>>> Grand prize is a trip for two to an Open Source event anywhere in the world >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>> _______________________________________________ >>>> Postfixadmin-devel mailing list >>>> Pos...@li... >>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >>>> >>>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >> Build the coolest Linux based applications with Moblin SDK & win great prizes >> Grand prize is a trip for two to an Open Source event anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Postfixadmin-devel mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >> > > |
From: Michiel v. B. <pos...@va...> - 2008-11-11 22:17:16
|
On 23:14, Tue 11 Nov 08, Marko Weber wrote: > Hello Michiel, > > seems postfix is not able to handle quota. > u got to patch it. but the patch is still not as stable in the packages. > so , i leave it this way without quota.................... > and wait for the day that postfix can do quota............ > > marko Yeah, now I remember. That's one of the reasons I started looking at maildrop. Now I use maildrop for delivery. It handles my quotas and my serverside filters. Very nice. So if you cant wait I can advise it. > > > > Michiel van Baak schrieb: > > On 20:28, Thu 06 Nov 08, Marko Weber wrote: > > > >> Hello Michiel, > >> i sent 2 further mails with 4mb attachement > >> no quota warning, mails was delivered to user. > >> > >> is the "multiplier" in the postfixadmin the wrong one ? > >> or is there a setting that MUST be in main.cf of postfix ? > >> > > > > I now see/remember that I'm using maildrop as LDA. > > So in my setup maildrop is handling the quota stuff. > > > > I started to document my setup some time ago, and I need to finish it. > > To read tho stuff I already wrote down go here: > > http://michiel.vanbaak.info/postfixamavismysql.htm > > > > Good luck > > > > > >> marko > >> > >> Michiel van Baak schrieb: > >> > >>> On 17:20, Thu 06 Nov 08, Marko Weber wrote: > >>> > >>> > >>>> Hi Michiel, > >>>> i tried your hints. > >>>> but seems not to go with quota. > >>>> > >>>> i send an 11mb mp3 to user and after that an 6mb mp3 > >>>> the quota is set in postfixadmin to 15mb, so it should send a mail that > >>>> quota is reached or not ? > >>>> > >>>> > >>> I think it will send the email on the next mail. > >>> 11 mb != quota reached. 6mb = one email so I think it will go through. > >>> Can you test by sending yet another email now that the user is over > >>> quota? > >>> > >>> > >>> > >>>> do i have to set any special on postfixadmin config ? > >>>> maybe its the quota multiplier ? > >>>> > >>>> > >>>> in the postfixadmin config for quota is this = > >>>> > >>>> // Default Domain Values > >>>> // Specify your default values below. Quota in MB. > >>>> $CONF['aliases'] = '15'; > >>>> $CONF['mailboxes'] = '15'; > >>>> $CONF['maxquota'] = '15'; > >>>> > >>>> // Quota > >>>> // When you want to enforce quota for your mailbox users set this to 'YES'. > >>>> $CONF['quota'] = 'YES'; > >>>> // You can either use '1024000' or '1048576' > >>>> $CONF['quota_multiplier'] = '1024000'; > >>>> > >>>> 10240000 is also in the mysql db as "quota" in the quota field for the > >>>> mail where i send the mp3?s > >>>> > >>>> any ideas ? > >>>> > >>>> marko > >>>> > >>>> > >>>> > >>>> > >>>> > >>>> Michiel van Baak schrieb: > >>>> > >>>> > >>>>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: > >>>>> > >>>>> > >>>>> > >>>>>> I set this in the postfixadmin config.file = > >>>>>> > >>>>>> // Default Domain Values > >>>>>> // Specify your default values below. Quota in MB. > >>>>>> $CONF['aliases'] = '15'; > >>>>>> $CONF['mailboxes'] = '15'; > >>>>>> $CONF['maxquota'] = '15'; > >>>>>> > >>>>>> // Quota > >>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. > >>>>>> $CONF['quota'] = 'YES'; > >>>>>> // You can either use '1024000' or '1048576' > >>>>>> $CONF['quota_multiplier'] = '15728640'; > >>>>>> > >>>>>> > >>>>>> i gave on postfix admin backend the domain = > >>>>>> > >>>>>> domain settings > >>>>>> --------- > >>>>>> aliase = -1 > >>>>>> mailbox = 12 > >>>>>> max quota 15 > >>>>>> > >>>>>> > >>>>>> > >>>>>> i created a mailbox for this domain and set for this mailbox 15mb quota > >>>>>> > >>>>>> i send an 11mb mp3 to this box and get this = > >>>>>> > >>>>>> This is the mail system at host xxxxxxxx.de. > >>>>>> > >>>>>> I'm sorry to have to inform you that your message could not > >>>>>> be delivered to one or more recipients. It's attached below. > >>>>>> > >>>>>> For further assistance, please send mail to postmaster. > >>>>>> > >>>>>> If you do so, please include this problem report. You can > >>>>>> delete your own text from the attached returned message. > >>>>>> > >>>>>> The mail system > >>>>>> > >>>>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of > >>>>>> server xxxxxxx.de[xxx.xxx.243.37] > >>>>>> > >>>>>> Any ideas why i get size limit 10240000 ???? > >>>>>> > >>>>>> > >>>>>> > >>>>> In the main postfix configuration you can set the maximum message size. > >>>>> As you can see, the default is 10MB per message. > >>>>> > >>>>> To remove all size limits and let the quota actually apply try setting > >>>>> this in your main.cf and reload postfix: > >>>>> > >>>>> mailbox_size_limit = 0 > >>>>> message_size_limit = 0 > >>>>> virtual_mailbox_limit = 0 > >>>>> > >>>>> Good luck. > >>>>> > >>>>> > >>>>> > >>>> ------------------------------------------------------------------------- > >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >>>> Build the coolest Linux based applications with Moblin SDK & win great prizes > >>>> Grand prize is a trip for two to an Open Source event anywhere in the world > >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >>>> _______________________________________________ > >>>> Postfixadmin-devel mailing list > >>>> Pos...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >>>> > >>>> > >>> > >>> > >> ------------------------------------------------------------------------- > >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >> Build the coolest Linux based applications with Moblin SDK & win great prizes > >> Grand prize is a trip for two to an Open Source event anywhere in the world > >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >> _______________________________________________ > >> Postfixadmin-devel mailing list > >> Pos...@li... > >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >> > > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Postfixadmin-devel mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel -- Michiel van Baak mi...@va... http://michiel.vanbaak.eu GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x71C946BD "Why is it drug addicts and computer aficionados are both called users?" |
From: Marko W. <mar...@sa...> - 2008-11-11 22:22:16
|
ooh , sounds interesting. you have any doku about that how you do the quota with maildrop ? or do you know any good howto, how to implement this in my virtual users / domains setup ? thank you marko Michiel van Baak schrieb: > On 23:14, Tue 11 Nov 08, Marko Weber wrote: > >> Hello Michiel, >> >> seems postfix is not able to handle quota. >> u got to patch it. but the patch is still not as stable in the packages. >> so , i leave it this way without quota.................... >> and wait for the day that postfix can do quota............ >> >> marko >> > > Yeah, now I remember. > That's one of the reasons I started looking at maildrop. > Now I use maildrop for delivery. > It handles my quotas and my serverside filters. Very nice. > > So if you cant wait I can advise it. > >> >> Michiel van Baak schrieb: >> >>> On 20:28, Thu 06 Nov 08, Marko Weber wrote: >>> >>> >>>> Hello Michiel, >>>> i sent 2 further mails with 4mb attachement >>>> no quota warning, mails was delivered to user. >>>> >>>> is the "multiplier" in the postfixadmin the wrong one ? >>>> or is there a setting that MUST be in main.cf of postfix ? >>>> >>>> >>> I now see/remember that I'm using maildrop as LDA. >>> So in my setup maildrop is handling the quota stuff. >>> >>> I started to document my setup some time ago, and I need to finish it. >>> To read tho stuff I already wrote down go here: >>> http://michiel.vanbaak.info/postfixamavismysql.htm >>> >>> Good luck >>> >>> >>> >>>> marko >>>> >>>> Michiel van Baak schrieb: >>>> >>>> >>>>> On 17:20, Thu 06 Nov 08, Marko Weber wrote: >>>>> >>>>> >>>>> >>>>>> Hi Michiel, >>>>>> i tried your hints. >>>>>> but seems not to go with quota. >>>>>> >>>>>> i send an 11mb mp3 to user and after that an 6mb mp3 >>>>>> the quota is set in postfixadmin to 15mb, so it should send a mail that >>>>>> quota is reached or not ? >>>>>> >>>>>> >>>>>> >>>>> I think it will send the email on the next mail. >>>>> 11 mb != quota reached. 6mb = one email so I think it will go through. >>>>> Can you test by sending yet another email now that the user is over >>>>> quota? >>>>> >>>>> >>>>> >>>>> >>>>>> do i have to set any special on postfixadmin config ? >>>>>> maybe its the quota multiplier ? >>>>>> >>>>>> >>>>>> in the postfixadmin config for quota is this = >>>>>> >>>>>> // Default Domain Values >>>>>> // Specify your default values below. Quota in MB. >>>>>> $CONF['aliases'] = '15'; >>>>>> $CONF['mailboxes'] = '15'; >>>>>> $CONF['maxquota'] = '15'; >>>>>> >>>>>> // Quota >>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. >>>>>> $CONF['quota'] = 'YES'; >>>>>> // You can either use '1024000' or '1048576' >>>>>> $CONF['quota_multiplier'] = '1024000'; >>>>>> >>>>>> 10240000 is also in the mysql db as "quota" in the quota field for the >>>>>> mail where i send the mp3?s >>>>>> >>>>>> any ideas ? >>>>>> >>>>>> marko >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> Michiel van Baak schrieb: >>>>>> >>>>>> >>>>>> >>>>>>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>>> I set this in the postfixadmin config.file = >>>>>>>> >>>>>>>> // Default Domain Values >>>>>>>> // Specify your default values below. Quota in MB. >>>>>>>> $CONF['aliases'] = '15'; >>>>>>>> $CONF['mailboxes'] = '15'; >>>>>>>> $CONF['maxquota'] = '15'; >>>>>>>> >>>>>>>> // Quota >>>>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. >>>>>>>> $CONF['quota'] = 'YES'; >>>>>>>> // You can either use '1024000' or '1048576' >>>>>>>> $CONF['quota_multiplier'] = '15728640'; >>>>>>>> >>>>>>>> >>>>>>>> i gave on postfix admin backend the domain = >>>>>>>> >>>>>>>> domain settings >>>>>>>> --------- >>>>>>>> aliase = -1 >>>>>>>> mailbox = 12 >>>>>>>> max quota 15 >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> i created a mailbox for this domain and set for this mailbox 15mb quota >>>>>>>> >>>>>>>> i send an 11mb mp3 to this box and get this = >>>>>>>> >>>>>>>> This is the mail system at host xxxxxxxx.de. >>>>>>>> >>>>>>>> I'm sorry to have to inform you that your message could not >>>>>>>> be delivered to one or more recipients. It's attached below. >>>>>>>> >>>>>>>> For further assistance, please send mail to postmaster. >>>>>>>> >>>>>>>> If you do so, please include this problem report. You can >>>>>>>> delete your own text from the attached returned message. >>>>>>>> >>>>>>>> The mail system >>>>>>>> >>>>>>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of >>>>>>>> server xxxxxxx.de[xxx.xxx.243.37] >>>>>>>> >>>>>>>> Any ideas why i get size limit 10240000 ???? >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> In the main postfix configuration you can set the maximum message size. >>>>>>> As you can see, the default is 10MB per message. >>>>>>> >>>>>>> To remove all size limits and let the quota actually apply try setting >>>>>>> this in your main.cf and reload postfix: >>>>>>> >>>>>>> mailbox_size_limit = 0 >>>>>>> message_size_limit = 0 >>>>>>> virtual_mailbox_limit = 0 >>>>>>> >>>>>>> Good luck. >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> ------------------------------------------------------------------------- >>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >>>>>> Build the coolest Linux based applications with Moblin SDK & win great prizes >>>>>> Grand prize is a trip for two to an Open Source event anywhere in the world >>>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>>> _______________________________________________ >>>>>> Postfixadmin-devel mailing list >>>>>> Pos...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >>>> Build the coolest Linux based applications with Moblin SDK & win great prizes >>>> Grand prize is a trip for two to an Open Source event anywhere in the world >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>> _______________________________________________ >>>> Postfixadmin-devel mailing list >>>> Pos...@li... >>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >>>> >>>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >> Build the coolest Linux based applications with Moblin SDK & win great prizes >> Grand prize is a trip for two to an Open Source event anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Postfixadmin-devel mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >> > > |
From: Michiel v. B. <pos...@va...> - 2008-11-11 22:25:46
|
On 23:23, Tue 11 Nov 08, Marko Weber wrote: > ooh , sounds interesting. > you have any doku about that how you do the quota with maildrop ? > or do you know any good howto, how to implement this in my virtual users > / domains setup ? <shameless plug>http://michiel.vanbaak.info/postfixamavismysql.htm</plug> Read that and if something is unclear read the original document where I based my setup on (it's linked in the first chapter of that howto) > > thank you > > marko > > > > Michiel van Baak schrieb: > > On 23:14, Tue 11 Nov 08, Marko Weber wrote: > > > >> Hello Michiel, > >> > >> seems postfix is not able to handle quota. > >> u got to patch it. but the patch is still not as stable in the packages. > >> so , i leave it this way without quota.................... > >> and wait for the day that postfix can do quota............ > >> > >> marko > >> > > > > Yeah, now I remember. > > That's one of the reasons I started looking at maildrop. > > Now I use maildrop for delivery. > > It handles my quotas and my serverside filters. Very nice. > > > > So if you cant wait I can advise it. > > > >> > >> Michiel van Baak schrieb: > >> > >>> On 20:28, Thu 06 Nov 08, Marko Weber wrote: > >>> > >>> > >>>> Hello Michiel, > >>>> i sent 2 further mails with 4mb attachement > >>>> no quota warning, mails was delivered to user. > >>>> > >>>> is the "multiplier" in the postfixadmin the wrong one ? > >>>> or is there a setting that MUST be in main.cf of postfix ? > >>>> > >>>> > >>> I now see/remember that I'm using maildrop as LDA. > >>> So in my setup maildrop is handling the quota stuff. > >>> > >>> I started to document my setup some time ago, and I need to finish it. > >>> To read tho stuff I already wrote down go here: > >>> http://michiel.vanbaak.info/postfixamavismysql.htm > >>> > >>> Good luck > >>> > >>> > >>> > >>>> marko > >>>> > >>>> Michiel van Baak schrieb: > >>>> > >>>> > >>>>> On 17:20, Thu 06 Nov 08, Marko Weber wrote: > >>>>> > >>>>> > >>>>> > >>>>>> Hi Michiel, > >>>>>> i tried your hints. > >>>>>> but seems not to go with quota. > >>>>>> > >>>>>> i send an 11mb mp3 to user and after that an 6mb mp3 > >>>>>> the quota is set in postfixadmin to 15mb, so it should send a mail that > >>>>>> quota is reached or not ? > >>>>>> > >>>>>> > >>>>>> > >>>>> I think it will send the email on the next mail. > >>>>> 11 mb != quota reached. 6mb = one email so I think it will go through. > >>>>> Can you test by sending yet another email now that the user is over > >>>>> quota? > >>>>> > >>>>> > >>>>> > >>>>> > >>>>>> do i have to set any special on postfixadmin config ? > >>>>>> maybe its the quota multiplier ? > >>>>>> > >>>>>> > >>>>>> in the postfixadmin config for quota is this = > >>>>>> > >>>>>> // Default Domain Values > >>>>>> // Specify your default values below. Quota in MB. > >>>>>> $CONF['aliases'] = '15'; > >>>>>> $CONF['mailboxes'] = '15'; > >>>>>> $CONF['maxquota'] = '15'; > >>>>>> > >>>>>> // Quota > >>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. > >>>>>> $CONF['quota'] = 'YES'; > >>>>>> // You can either use '1024000' or '1048576' > >>>>>> $CONF['quota_multiplier'] = '1024000'; > >>>>>> > >>>>>> 10240000 is also in the mysql db as "quota" in the quota field for the > >>>>>> mail where i send the mp3?s > >>>>>> > >>>>>> any ideas ? > >>>>>> > >>>>>> marko > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> Michiel van Baak schrieb: > >>>>>> > >>>>>> > >>>>>> > >>>>>>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>>> I set this in the postfixadmin config.file = > >>>>>>>> > >>>>>>>> // Default Domain Values > >>>>>>>> // Specify your default values below. Quota in MB. > >>>>>>>> $CONF['aliases'] = '15'; > >>>>>>>> $CONF['mailboxes'] = '15'; > >>>>>>>> $CONF['maxquota'] = '15'; > >>>>>>>> > >>>>>>>> // Quota > >>>>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. > >>>>>>>> $CONF['quota'] = 'YES'; > >>>>>>>> // You can either use '1024000' or '1048576' > >>>>>>>> $CONF['quota_multiplier'] = '15728640'; > >>>>>>>> > >>>>>>>> > >>>>>>>> i gave on postfix admin backend the domain = > >>>>>>>> > >>>>>>>> domain settings > >>>>>>>> --------- > >>>>>>>> aliase = -1 > >>>>>>>> mailbox = 12 > >>>>>>>> max quota 15 > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> i created a mailbox for this domain and set for this mailbox 15mb quota > >>>>>>>> > >>>>>>>> i send an 11mb mp3 to this box and get this = > >>>>>>>> > >>>>>>>> This is the mail system at host xxxxxxxx.de. > >>>>>>>> > >>>>>>>> I'm sorry to have to inform you that your message could not > >>>>>>>> be delivered to one or more recipients. It's attached below. > >>>>>>>> > >>>>>>>> For further assistance, please send mail to postmaster. > >>>>>>>> > >>>>>>>> If you do so, please include this problem report. You can > >>>>>>>> delete your own text from the attached returned message. > >>>>>>>> > >>>>>>>> The mail system > >>>>>>>> > >>>>>>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of > >>>>>>>> server xxxxxxx.de[xxx.xxx.243.37] > >>>>>>>> > >>>>>>>> Any ideas why i get size limit 10240000 ???? > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>> In the main postfix configuration you can set the maximum message size. > >>>>>>> As you can see, the default is 10MB per message. > >>>>>>> > >>>>>>> To remove all size limits and let the quota actually apply try setting > >>>>>>> this in your main.cf and reload postfix: > >>>>>>> > >>>>>>> mailbox_size_limit = 0 > >>>>>>> message_size_limit = 0 > >>>>>>> virtual_mailbox_limit = 0 > >>>>>>> > >>>>>>> Good luck. > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>> ------------------------------------------------------------------------- > >>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >>>>>> Build the coolest Linux based applications with Moblin SDK & win great prizes > >>>>>> Grand prize is a trip for two to an Open Source event anywhere in the world > >>>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >>>>>> _______________________________________________ > >>>>>> Postfixadmin-devel mailing list > >>>>>> Pos...@li... > >>>>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >>>>>> > >>>>>> > >>>>>> > >>>>> > >>>>> > >>>>> > >>>> ------------------------------------------------------------------------- > >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >>>> Build the coolest Linux based applications with Moblin SDK & win great prizes > >>>> Grand prize is a trip for two to an Open Source event anywhere in the world > >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >>>> _______________________________________________ > >>>> Postfixadmin-devel mailing list > >>>> Pos...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >>>> > >>>> > >>> > >>> > >> ------------------------------------------------------------------------- > >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >> Build the coolest Linux based applications with Moblin SDK & win great prizes > >> Grand prize is a trip for two to an Open Source event anywhere in the world > >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >> _______________________________________________ > >> Postfixadmin-devel mailing list > >> Pos...@li... > >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >> > > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Postfixadmin-devel mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel -- Michiel van Baak mi...@va... http://michiel.vanbaak.eu GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x71C946BD "Why is it drug addicts and computer aficionados are both called users?" |
From: Marko W. <mar...@sa...> - 2008-11-11 22:37:03
|
Michiel., sorry, in your howto is quota config <some text> , seems its planned for later. ill try man maildrop, if problems i come back , ok ? marko Michiel van Baak schrieb: > On 23:23, Tue 11 Nov 08, Marko Weber wrote: > >> ooh , sounds interesting. >> you have any doku about that how you do the quota with maildrop ? >> or do you know any good howto, how to implement this in my virtual users >> / domains setup ? >> > > <shameless > plug>http://michiel.vanbaak.info/postfixamavismysql.htm</plug> > > Read that and if something is unclear read the original document where I > based my setup on (it's linked in the first chapter of that howto) > >> thank you >> >> marko >> >> >> >> Michiel van Baak schrieb: >> >>> On 23:14, Tue 11 Nov 08, Marko Weber wrote: >>> >>> >>>> Hello Michiel, >>>> >>>> seems postfix is not able to handle quota. >>>> u got to patch it. but the patch is still not as stable in the packages. >>>> so , i leave it this way without quota.................... >>>> and wait for the day that postfix can do quota............ >>>> >>>> marko >>>> >>>> >>> Yeah, now I remember. >>> That's one of the reasons I started looking at maildrop. >>> Now I use maildrop for delivery. >>> It handles my quotas and my serverside filters. Very nice. >>> >>> So if you cant wait I can advise it. >>> >>> >>>> Michiel van Baak schrieb: >>>> >>>> >>>>> On 20:28, Thu 06 Nov 08, Marko Weber wrote: >>>>> >>>>> >>>>> >>>>>> Hello Michiel, >>>>>> i sent 2 further mails with 4mb attachement >>>>>> no quota warning, mails was delivered to user. >>>>>> >>>>>> is the "multiplier" in the postfixadmin the wrong one ? >>>>>> or is there a setting that MUST be in main.cf of postfix ? >>>>>> >>>>>> >>>>>> >>>>> I now see/remember that I'm using maildrop as LDA. >>>>> So in my setup maildrop is handling the quota stuff. >>>>> >>>>> I started to document my setup some time ago, and I need to finish it. >>>>> To read tho stuff I already wrote down go here: >>>>> http://michiel.vanbaak.info/postfixamavismysql.htm >>>>> >>>>> Good luck >>>>> >>>>> >>>>> >>>>> >>>>>> marko >>>>>> >>>>>> Michiel van Baak schrieb: >>>>>> >>>>>> >>>>>> >>>>>>> On 17:20, Thu 06 Nov 08, Marko Weber wrote: >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>>> Hi Michiel, >>>>>>>> i tried your hints. >>>>>>>> but seems not to go with quota. >>>>>>>> >>>>>>>> i send an 11mb mp3 to user and after that an 6mb mp3 >>>>>>>> the quota is set in postfixadmin to 15mb, so it should send a mail that >>>>>>>> quota is reached or not ? >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> I think it will send the email on the next mail. >>>>>>> 11 mb != quota reached. 6mb = one email so I think it will go through. >>>>>>> Can you test by sending yet another email now that the user is over >>>>>>> quota? >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>>> do i have to set any special on postfixadmin config ? >>>>>>>> maybe its the quota multiplier ? >>>>>>>> >>>>>>>> >>>>>>>> in the postfixadmin config for quota is this = >>>>>>>> >>>>>>>> // Default Domain Values >>>>>>>> // Specify your default values below. Quota in MB. >>>>>>>> $CONF['aliases'] = '15'; >>>>>>>> $CONF['mailboxes'] = '15'; >>>>>>>> $CONF['maxquota'] = '15'; >>>>>>>> >>>>>>>> // Quota >>>>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. >>>>>>>> $CONF['quota'] = 'YES'; >>>>>>>> // You can either use '1024000' or '1048576' >>>>>>>> $CONF['quota_multiplier'] = '1024000'; >>>>>>>> >>>>>>>> 10240000 is also in the mysql db as "quota" in the quota field for the >>>>>>>> mail where i send the mp3?s >>>>>>>> >>>>>>>> any ideas ? >>>>>>>> >>>>>>>> marko >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> Michiel van Baak schrieb: >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>>> I set this in the postfixadmin config.file = >>>>>>>>>> >>>>>>>>>> // Default Domain Values >>>>>>>>>> // Specify your default values below. Quota in MB. >>>>>>>>>> $CONF['aliases'] = '15'; >>>>>>>>>> $CONF['mailboxes'] = '15'; >>>>>>>>>> $CONF['maxquota'] = '15'; >>>>>>>>>> >>>>>>>>>> // Quota >>>>>>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. >>>>>>>>>> $CONF['quota'] = 'YES'; >>>>>>>>>> // You can either use '1024000' or '1048576' >>>>>>>>>> $CONF['quota_multiplier'] = '15728640'; >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> i gave on postfix admin backend the domain = >>>>>>>>>> >>>>>>>>>> domain settings >>>>>>>>>> --------- >>>>>>>>>> aliase = -1 >>>>>>>>>> mailbox = 12 >>>>>>>>>> max quota 15 >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> i created a mailbox for this domain and set for this mailbox 15mb quota >>>>>>>>>> >>>>>>>>>> i send an 11mb mp3 to this box and get this = >>>>>>>>>> >>>>>>>>>> This is the mail system at host xxxxxxxx.de. >>>>>>>>>> >>>>>>>>>> I'm sorry to have to inform you that your message could not >>>>>>>>>> be delivered to one or more recipients. It's attached below. >>>>>>>>>> >>>>>>>>>> For further assistance, please send mail to postmaster. >>>>>>>>>> >>>>>>>>>> If you do so, please include this problem report. You can >>>>>>>>>> delete your own text from the attached returned message. >>>>>>>>>> >>>>>>>>>> The mail system >>>>>>>>>> >>>>>>>>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of >>>>>>>>>> server xxxxxxx.de[xxx.xxx.243.37] >>>>>>>>>> >>>>>>>>>> Any ideas why i get size limit 10240000 ???? >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>> In the main postfix configuration you can set the maximum message size. >>>>>>>>> As you can see, the default is 10MB per message. >>>>>>>>> >>>>>>>>> To remove all size limits and let the quota actually apply try setting >>>>>>>>> this in your main.cf and reload postfix: >>>>>>>>> >>>>>>>>> mailbox_size_limit = 0 >>>>>>>>> message_size_limit = 0 >>>>>>>>> virtual_mailbox_limit = 0 >>>>>>>>> >>>>>>>>> Good luck. >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>> ------------------------------------------------------------------------- >>>>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >>>>>>>> Build the coolest Linux based applications with Moblin SDK & win great prizes >>>>>>>> Grand prize is a trip for two to an Open Source event anywhere in the world >>>>>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>>>>> _______________________________________________ >>>>>>>> Postfixadmin-devel mailing list >>>>>>>> Pos...@li... >>>>>>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> ------------------------------------------------------------------------- >>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >>>>>> Build the coolest Linux based applications with Moblin SDK & win great prizes >>>>>> Grand prize is a trip for two to an Open Source event anywhere in the world >>>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>>>> _______________________________________________ >>>>>> Postfixadmin-devel mailing list >>>>>> Pos...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------------- >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >>>> Build the coolest Linux based applications with Moblin SDK & win great prizes >>>> Grand prize is a trip for two to an Open Source event anywhere in the world >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >>>> _______________________________________________ >>>> Postfixadmin-devel mailing list >>>> Pos...@li... >>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >>>> >>>> >>> >>> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge >> Build the coolest Linux based applications with Moblin SDK & win great prizes >> Grand prize is a trip for two to an Open Source event anywhere in the world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Postfixadmin-devel mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel >> > > |
From: Michiel v. B. <pos...@va...> - 2008-11-11 22:42:16
|
On 23:37, Tue 11 Nov 08, Marko Weber wrote: > Michiel., > sorry, in your howto is quota config <some text> , seems its planned > for later. Yeah. The section I am planning to write there is how to report the mailbox owner that they are reaching their quota. maildrop does handle the quota by default. As you can see in my howto I did setup the quota field in the database, and it's also used in authdaemon. That combo makes maildrop consider the quota automagically. > ill try man maildrop, if problems i come back , ok ? > marko Sure. > > > > Michiel van Baak schrieb: > > On 23:23, Tue 11 Nov 08, Marko Weber wrote: > > > >> ooh , sounds interesting. > >> you have any doku about that how you do the quota with maildrop ? > >> or do you know any good howto, how to implement this in my virtual users > >> / domains setup ? > >> > > > > <shameless > > plug>http://michiel.vanbaak.info/postfixamavismysql.htm</plug> > > > > Read that and if something is unclear read the original document where I > > based my setup on (it's linked in the first chapter of that howto) > > > >> thank you > >> > >> marko > >> > >> > >> > >> Michiel van Baak schrieb: > >> > >>> On 23:14, Tue 11 Nov 08, Marko Weber wrote: > >>> > >>> > >>>> Hello Michiel, > >>>> > >>>> seems postfix is not able to handle quota. > >>>> u got to patch it. but the patch is still not as stable in the packages. > >>>> so , i leave it this way without quota.................... > >>>> and wait for the day that postfix can do quota............ > >>>> > >>>> marko > >>>> > >>>> > >>> Yeah, now I remember. > >>> That's one of the reasons I started looking at maildrop. > >>> Now I use maildrop for delivery. > >>> It handles my quotas and my serverside filters. Very nice. > >>> > >>> So if you cant wait I can advise it. > >>> > >>> > >>>> Michiel van Baak schrieb: > >>>> > >>>> > >>>>> On 20:28, Thu 06 Nov 08, Marko Weber wrote: > >>>>> > >>>>> > >>>>> > >>>>>> Hello Michiel, > >>>>>> i sent 2 further mails with 4mb attachement > >>>>>> no quota warning, mails was delivered to user. > >>>>>> > >>>>>> is the "multiplier" in the postfixadmin the wrong one ? > >>>>>> or is there a setting that MUST be in main.cf of postfix ? > >>>>>> > >>>>>> > >>>>>> > >>>>> I now see/remember that I'm using maildrop as LDA. > >>>>> So in my setup maildrop is handling the quota stuff. > >>>>> > >>>>> I started to document my setup some time ago, and I need to finish it. > >>>>> To read tho stuff I already wrote down go here: > >>>>> http://michiel.vanbaak.info/postfixamavismysql.htm > >>>>> > >>>>> Good luck > >>>>> > >>>>> > >>>>> > >>>>> > >>>>>> marko > >>>>>> > >>>>>> Michiel van Baak schrieb: > >>>>>> > >>>>>> > >>>>>> > >>>>>>> On 17:20, Thu 06 Nov 08, Marko Weber wrote: > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>>> Hi Michiel, > >>>>>>>> i tried your hints. > >>>>>>>> but seems not to go with quota. > >>>>>>>> > >>>>>>>> i send an 11mb mp3 to user and after that an 6mb mp3 > >>>>>>>> the quota is set in postfixadmin to 15mb, so it should send a mail that > >>>>>>>> quota is reached or not ? > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>> I think it will send the email on the next mail. > >>>>>>> 11 mb != quota reached. 6mb = one email so I think it will go through. > >>>>>>> Can you test by sending yet another email now that the user is over > >>>>>>> quota? > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>>> do i have to set any special on postfixadmin config ? > >>>>>>>> maybe its the quota multiplier ? > >>>>>>>> > >>>>>>>> > >>>>>>>> in the postfixadmin config for quota is this = > >>>>>>>> > >>>>>>>> // Default Domain Values > >>>>>>>> // Specify your default values below. Quota in MB. > >>>>>>>> $CONF['aliases'] = '15'; > >>>>>>>> $CONF['mailboxes'] = '15'; > >>>>>>>> $CONF['maxquota'] = '15'; > >>>>>>>> > >>>>>>>> // Quota > >>>>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. > >>>>>>>> $CONF['quota'] = 'YES'; > >>>>>>>> // You can either use '1024000' or '1048576' > >>>>>>>> $CONF['quota_multiplier'] = '1024000'; > >>>>>>>> > >>>>>>>> 10240000 is also in the mysql db as "quota" in the quota field for the > >>>>>>>> mail where i send the mp3?s > >>>>>>>> > >>>>>>>> any ideas ? > >>>>>>>> > >>>>>>>> marko > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> Michiel van Baak schrieb: > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>>> On 00:58, Wed 05 Nov 08, Marko Weber wrote: > >>>>>>>>> > >>>>>>>>> > >>>>>>>>> > >>>>>>>>> > >>>>>>>>> > >>>>>>>>>> I set this in the postfixadmin config.file = > >>>>>>>>>> > >>>>>>>>>> // Default Domain Values > >>>>>>>>>> // Specify your default values below. Quota in MB. > >>>>>>>>>> $CONF['aliases'] = '15'; > >>>>>>>>>> $CONF['mailboxes'] = '15'; > >>>>>>>>>> $CONF['maxquota'] = '15'; > >>>>>>>>>> > >>>>>>>>>> // Quota > >>>>>>>>>> // When you want to enforce quota for your mailbox users set this to 'YES'. > >>>>>>>>>> $CONF['quota'] = 'YES'; > >>>>>>>>>> // You can either use '1024000' or '1048576' > >>>>>>>>>> $CONF['quota_multiplier'] = '15728640'; > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>>> i gave on postfix admin backend the domain = > >>>>>>>>>> > >>>>>>>>>> domain settings > >>>>>>>>>> --------- > >>>>>>>>>> aliase = -1 > >>>>>>>>>> mailbox = 12 > >>>>>>>>>> max quota 15 > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>>> i created a mailbox for this domain and set for this mailbox 15mb quota > >>>>>>>>>> > >>>>>>>>>> i send an 11mb mp3 to this box and get this = > >>>>>>>>>> > >>>>>>>>>> This is the mail system at host xxxxxxxx.de. > >>>>>>>>>> > >>>>>>>>>> I'm sorry to have to inform you that your message could not > >>>>>>>>>> be delivered to one or more recipients. It's attached below. > >>>>>>>>>> > >>>>>>>>>> For further assistance, please send mail to postmaster. > >>>>>>>>>> > >>>>>>>>>> If you do so, please include this problem report. You can > >>>>>>>>>> delete your own text from the attached returned message. > >>>>>>>>>> > >>>>>>>>>> The mail system > >>>>>>>>>> > >>>>>>>>>> <xx...@xx...>: message size 15075956 exceeds size limit 10240000 of > >>>>>>>>>> server xxxxxxx.de[xxx.xxx.243.37] > >>>>>>>>>> > >>>>>>>>>> Any ideas why i get size limit 10240000 ???? > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>> In the main postfix configuration you can set the maximum message size. > >>>>>>>>> As you can see, the default is 10MB per message. > >>>>>>>>> > >>>>>>>>> To remove all size limits and let the quota actually apply try setting > >>>>>>>>> this in your main.cf and reload postfix: > >>>>>>>>> > >>>>>>>>> mailbox_size_limit = 0 > >>>>>>>>> message_size_limit = 0 > >>>>>>>>> virtual_mailbox_limit = 0 > >>>>>>>>> > >>>>>>>>> Good luck. > >>>>>>>>> > >>>>>>>>> > >>>>>>>>> > >>>>>>>>> > >>>>>>>>> > >>>>>>>> ------------------------------------------------------------------------- > >>>>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >>>>>>>> Build the coolest Linux based applications with Moblin SDK & win great prizes > >>>>>>>> Grand prize is a trip for two to an Open Source event anywhere in the world > >>>>>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >>>>>>>> _______________________________________________ > >>>>>>>> Postfixadmin-devel mailing list > >>>>>>>> Pos...@li... > >>>>>>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>> ------------------------------------------------------------------------- > >>>>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >>>>>> Build the coolest Linux based applications with Moblin SDK & win great prizes > >>>>>> Grand prize is a trip for two to an Open Source event anywhere in the world > >>>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >>>>>> _______________________________________________ > >>>>>> Postfixadmin-devel mailing list > >>>>>> Pos...@li... > >>>>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >>>>>> > >>>>>> > >>>>>> > >>>>> > >>>>> > >>>>> > >>>> ------------------------------------------------------------------------- > >>>> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >>>> Build the coolest Linux based applications with Moblin SDK & win great prizes > >>>> Grand prize is a trip for two to an Open Source event anywhere in the world > >>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >>>> _______________________________________________ > >>>> Postfixadmin-devel mailing list > >>>> Pos...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >>>> > >>>> > >>> > >>> > >> ------------------------------------------------------------------------- > >> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > >> Build the coolest Linux based applications with Moblin SDK & win great prizes > >> Grand prize is a trip for two to an Open Source event anywhere in the world > >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ > >> _______________________________________________ > >> Postfixadmin-devel mailing list > >> Pos...@li... > >> https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel > >> > > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Postfixadmin-devel mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postfixadmin-devel -- Michiel van Baak mi...@va... http://michiel.vanbaak.eu GnuPG key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x71C946BD "Why is it drug addicts and computer aficionados are both called users?" |
From: Marko W. <mar...@sa...> - 2008-11-12 09:02:47
|
At first thank you for your effort to list all links, i will go thru them. Very interesting sounds the way to manage vacation over Sieve. For me,. i got the vacation in postfixadmin working in some steps. you gotta install some perl packets. with cpan an easy job. then i edited some lines in the vacation.pl and it worked out of box. but the postfix admin - vacation dont remember who got an vacation message before. so if same person mails u again,. he gets everytime the vacation massage. Is this Sieve easy to do ? marko albinootje schrieb: > Marko Weber wrote: > > >> sorry, in your howto is quota config <some text> , seems its planned >> for later. ill try man maildrop, if problems i come back , ok ? >> > > Okay, If i may shamelessly plug my favourite imap/pop3 server here :-) > > http://wiki.dovecot.org/HowTo/DovecotLDAPostfixAdminMySQL?highlight=(postfixadmin) > > I'm happily using this on a few mailservers at least for 1 year, > following this howto (one change in the howto for running it on debian was > the gid 8 for mail) > > One advantage of dovecot is that dovecot can do also the LDA, > no need for extra software like maildrop. (I've tried maildrop before, > but that > was pretty hard to debug when it didn't work right away :( ) > > I'm not using quota, but here's a wiki-page about dovecot + quota > http://wiki.dovecot.org/Quota > > Dovecot is actively maintained, the author is pretty responsive on the > mailinglists, it's fast and it focuses (amongst others) on security. > It's also flexible and has several plugin options. > > I like dovecot, and i like postfixadmin too, but after spending *days* > (months ago) on getting the postfixadmin autoreply functioning kind of > properly (eventually using a mix of debian stable and debian testing), i've > finally switched to the sieve plugin of dovecot for autoreplies. > > http://wiki.dovecot.org/LDA/Sieve > > see also : > http://wiki.dovecot.org/Migration > > just FYI > > > > -- -- *Marko Weber* | Administration *SALON DIGITAL* Media GmbH Rothenbaumchaussee 19a 20148 Hamburg T. (040) 429 48 68 - 23 F. (040) 429 48 68 - 20 mar...@sa... <mailto:mar...@sa...> www.salondigital.de <http://www.salondigital.de> -- Geschäftsführung: Stephan Michalik, Ekkehart Opitz Registergericht: Amtsgericht Hamburg, NR: HRB 78111 NOTE: This communication is confidential and is intended for the use of the individual or entity to which it is directed. It may contain information that is privileged and exempt from disclosure under applicable law. If you are not the intended recipient please notify us immediately. You should not copy it or disclose its contents to any other person. |
From: Marko W. <mar...@sa...> - 2008-11-12 13:44:54
|
when i delete a mailbox in postfixadmin i get a message = "konnte nicht gelöscht werden ex...@ma... (physical mail!)" it deletes the mail from the "virtual list", but the folder are still there on the server after deletion ... any ideas ? marko |
From: albinootje <alb...@gm...> - 2008-11-12 19:59:48
|
Marko Weber wrote: Hi, > Is this Sieve easy to do ? I'm using this : http://wiki.dovecot.org/LDA/Sieve#head-f083c4265adca5ce0fecf17d7684bd2dedbd5812-2 Very easy to set up, (just use the file .dovecot.sieve in the users dir) but the users have to ask me to set up the vacation-message, and to remove it when they come back. I've also tried AvelSieve as a plugin for Squirrelmail, which looks cool, http://email.uoa.gr/avelsieve/wiki/Screenshots took me quite some time to set it up, and then i decided that it was too tricky for my users to make mistakes with filtering. I also had some strange permission-problems with it, which i couldn't fix eventually, I gave up for now. Regards, A. |
From: albinootje <alb...@gm...> - 2008-11-11 23:37:11
|
Marko Weber wrote: > sorry, in your howto is quota config <some text> , seems its planned > for later. ill try man maildrop, if problems i come back , ok ? Okay, If i may shamelessly plug my favourite imap/pop3 server here :-) http://wiki.dovecot.org/HowTo/DovecotLDAPostfixAdminMySQL?highlight=(postfixadmin) I'm happily using this on a few mailservers at least for 1 year, following this howto (one change in the howto for running it on debian was the gid 8 for mail) One advantage of dovecot is that dovecot can do also the LDA, no need for extra software like maildrop. (I've tried maildrop before, but that was pretty hard to debug when it didn't work right away :( ) I'm not using quota, but here's a wiki-page about dovecot + quota http://wiki.dovecot.org/Quota Dovecot is actively maintained, the author is pretty responsive on the mailinglists, it's fast and it focuses (amongst others) on security. It's also flexible and has several plugin options. I like dovecot, and i like postfixadmin too, but after spending *days* (months ago) on getting the postfixadmin autoreply functioning kind of properly (eventually using a mix of debian stable and debian testing), i've finally switched to the sieve plugin of dovecot for autoreplies. http://wiki.dovecot.org/LDA/Sieve see also : http://wiki.dovecot.org/Migration just FYI |
From: Guido 'l. B. <g....@le...> - 2008-11-12 00:08:10
|
albinootje wrote: > Marko Weber wrote: > >> sorry, in your howto is quota config <some text> , seems its planned >> for later. ill try man maildrop, if problems i come back , ok ? > > Okay, If i may shamelessly plug my favourite imap/pop3 server here :-) > ..... > http://wiki.dovecot.org/HowTo/DovecotLDAPostfixAdminMySQL?highlight=(postfixadmin) Exactly the same over here, i'm running my own Dovecot/PFA setup on a few FreeBSD boxes and i'm happy ever since i switched from Courier/Maildrop. I use Dovecot for POP3/IMAP/LDA together with the sieveplugin and let my users modify their filtersettings and autoreplies via my Squirrel-/Nutsmail installation featuring the "avelsieve" extension. // lenix -- Guido Boehm | _/ | website: http://lenix.de/ Voigtstr. 8 | _/ | contact: http://lenix.de/contact/ 20257 DE/HH | _/ | my card: http://lenix.de/contact/vcard.vcf 01738099196 | _/_/_/ | sweet<3: http://xichen.de/ :] |