Re: What is the appropriate action for out of memory error for exceeding vsz_limit in my situation?

2024-11-11 Thread Adrian C. via dovecot
On Fri, 8 Nov 2024, Marc wrote: How much does it cost to upgrade to more memory? I have a server with 4G RAM is affordable. But if you do colocation and have to rent remote PoP hands to insert the RAM their hourly rate could be hundreds of dollars. If you're renting the entire server you h

Re: What is the appropriate action for out of memory error for exceeding vsz_limit in my situation?

2024-11-07 Thread Adrian C. via dovecot
On Thu, 17 Oct 2024, Steve Dondley via dovecot wrote: If it was my mailbox, I’d delete them. But it’s not, so I can’t. So barring this action, what are my best available options? You have to tell to the user(s) that the service is not unlimited like Gmail. Automated Archival feature of Thu

Re: vsz_limit status

2024-10-18 Thread Joan Moreau via dovecot
Further more, if I se vsz_limit = 4G in the conf file, getrlimit returns the value of default_vsz_limit service indexer-worker { vsz_limit = 4G process_limit = 0 } How to get the correct value ? On Sat, 2024-10-19 at 08:11 +0800, Joan Moreau wrote: > Hi > > Not really. > > 1 -

Re: vsz_limit status

2024-10-18 Thread Joan Moreau via dovecot
it comes from indexer-worker? > > > > > > Aki > > > > > > > On 18/10/2024 15:36 EEST Joan Moreau via dovecot > > > > wrote: > > > > > > > >   > > > > If I put  > > > > long t = master_service_get_p

Re: vsz_limit status

2024-10-18 Thread Aki Tuomi via dovecot
> On 18/10/2024 15:36 EEST Joan Moreau via dovecot > > > wrote: > > > > > >   > > > If I put  > > > long t = master_service_get_process_limit(master_service); > > > > > > in my plugin, I get 1024 (but I put process_limit = 2 in my &g

Re: vsz_limit status

2024-10-18 Thread Joan Moreau via dovecot
te: > > > >   > > If I put  > > long t = master_service_get_process_limit(master_service); > > > > in my plugin, I get 1024 (but I put process_limit = 2 in my > > dvecot.conf: > > > > service indexer-worker { > > vsz_limit = 4G > > pro

Re: vsz_limit status

2024-10-18 Thread Aki Tuomi via dovecot
my plugin, I get 1024 (but I put process_limit = 2 in my > dvecot.conf: > > service indexer-worker { > vsz_limit = 4G > process_limit = 2 > } > > > On Fri, 2024-10-18 at 02:09 +0400, Joan Moreau via dovecot wrote: > > Hi > > > > It seems I need

Re: vsz_limit status

2024-10-18 Thread Joan Moreau via dovecot
If I put  long t = master_service_get_process_limit(master_service); in my plugin, I get 1024 (but I put process_limit = 2 in my dvecot.conf: service indexer-worker { vsz_limit = 4G process_limit = 2 } On Fri, 2024-10-18 at 02:09 +0400, Joan Moreau via dovecot wrote: > Hi > > It see

Re: What is the appropriate action for out of memory error for exceeding vsz_limit in my situation?

2024-10-17 Thread Steve Dondley via dovecot
>> > > How many messages do you have in the folder? > > Don't keep 10 thousand of them in a folder and it should be fine. > If it was my mailbox, I’d delete them. But it’s not, so I can’t. So barring this action, what are my best available options? _

Re: vsz_limit status

2024-10-17 Thread Joan Moreau via dovecot
. vsz_limit includes mmap and malloc allocations. dovecot uses setrlimit() to enforce the memory limit, so getrusage() should give you the relevant value. Aki On 12/10/2024 02:47 EEST Joan Moreau via dovecot wrote: Looking forward to any help On Tue, 2024-10-08 at 08:45 +0800, Joan Moreau

Re: vsz_limit status

2024-10-11 Thread Aki Tuomi via dovecot
You need to include master-service.h to get master_service_get_process_limit, which returns how many processes of this type can be created before reaching the limit. vsz_limit includes mmap and malloc allocations. dovecot uses setrlimit() to enforce the memory limit, so getrusage() should give

Re: vsz_limit status

2024-10-11 Thread Joan Moreau via dovecot
via dovecot wrote: > > Hi > > > > What is the link between getrlimit (linux posix) ,  the vsz_limit > > parameter nd " MemAvailable"  from /proc/meminfo ? > > > > Is there a way to see how much of the allocated memory (vsz ?) the > > process is

Re: vsz_limit status

2024-10-07 Thread Joan Moreau via dovecot
Additionally, I get error:  'master_service_get_process_limit' was not declared in this scope  (dovecot git version) On Tue, 2024-10-08 at 08:16 +0800, Joan Moreau via dovecot wrote: > Hi > > What is the link between getrlimit (linux posix) ,  the vsz_limit > parameter nd

Re: vsz_limit status

2024-10-07 Thread Joan Moreau via dovecot
Hi What is the link between getrlimit (linux posix) , the vsz_limit parameter nd " MemAvailable" from /proc/meminfo ? Is there a way to see how much of the allocated memory (vsz ?) the process is using in dovecot ? Does that vsz limit take into account the direct malloc

Re: vsz_limit status

2024-10-07 Thread Joan Moreau via dovecot
Hi What is the link between getrlimit (linux posix) , the vsz_limit parameter nd " MemAvailable" from /proc/meminfo ? Is tehre a way to see how much of the allocated memory (vsz ?) the process is using in dovecot ? Does that vsz limit take into account the direct malloc ? Th

Re: vsz_limit status

2024-10-07 Thread Aki Tuomi via dovecot
With 2.3 you can use master_service_get_process_limit() for the process limit. To get vsz_limit, it's probably easiest to use getrlimit(). Aki > On 07/10/2024 19:00 EEST Joan Moreau via dovecot wrote: > > > get_rusage does not give me the value of vsz_limit from dovecot

Re: vsz_limit status

2024-10-07 Thread Joan Moreau via dovecot
get_rusage does not give me the value of vsz_limit from dovecot.conf ! Need also process_limit (also from dovecot.conf) Thank you On 2024-10-07 14:13, Aki Tuomi via dovecot wrote: On 07/10/2024 07:36 EEST Joan Moreau via dovecot wrote: Hi How to get (programatically, c++) the current

Re: vsz_limit status

2024-10-06 Thread Aki Tuomi via dovecot
> On 07/10/2024 07:36 EEST Joan Moreau via dovecot wrote: > > > Hi > > How to get (programatically, c++) the current usage of memory, under the > limit of vsz_limit ? > > https://doc.dovecot.org/2.3/configuration_manual/service_configuration/#service-configurati

vsz_limit status

2024-10-06 Thread Joan Moreau via dovecot
Hi How to get (programatically, c++) the current usage of memory, under the limit of vsz_limit ? https://doc.dovecot.org/2.3/configuration_manual/service_configuration/#service-configuration-vsz-limit Thank you ___ dovecot mailing list -- dovecot

Re: What is the appropriate action for out of memory error for exceeding vsz_limit in my situation?

2024-09-28 Thread Adrian C. via dovecot
On Fri, 27 Sep 2024, Steve Dondley via dovecot wrote: Fatal: master: service(imap): child 17910 returned error 83 (Out of memory (service imap { vsz_limit=325 MB }, you may need to increase it) - set CORE_OUTOFMEM=1 environment to get core dump) So before upgrading to the server to 1024 MB

What is the appropriate action for out of memory error for exceeding vsz_limit in my situation?

2024-09-27 Thread Steve Dondley via dovecot
Hi, I have sporadic messages on my server about an account getting an out of memory error: Fatal: master: service(imap): child 17910 returned error 83 (Out of memory (service imap { vsz_limit=325 MB }, you may need to increase it) - set CORE_OUTOFMEM=1 environment to get core dump) In

vsz_limit

2021-12-07 Thread Daniel Miller
I just noticed, that when checking "doveconf -a" - all vsz_limit settings that are not explicitly given have a value of: 18446744073709551615 B I have this on two servers, one with an implicit default_vsz_limit=256M, the other with an explicit default_vsz_limit=2G. Is th

Re: Retrieive vsz_limit programatically

2021-11-22 Thread Timo Sirainen
Do you want to find out the service/process's own vsz_limit or another service's vsz_limit? Own vsz_limit would be easiest to get with getrlimit(RLIMIT_AS) as Aki said. If you want another service's vsz_limit that's not easily possible, because those settings just are

Re: Retrieive vsz_limit programatically

2021-11-21 Thread Aki Tuomi
Dovecot master process uses setrlimit to enforce the limit, so you should be able to get it with RLIMIT_AS or RLIMIT_DATA, iirc it depends a bit on os which is used. I dont think service->vsz_limit is available on the service itself. Aki On 21 November 2021 12.20.16 UTC, Joan Moreau wr

Re: Retrieive vsz_limit programatically

2021-11-20 Thread Aki Tuomi
You could try getrlimit RLIMIT_AS. Aki On 20 November 2021 17.22.17 UTC, Joan Moreau wrote: > > >Hello > >How to get, programatically (C/C++), the value of teh dovecot.conf file >of vsz_limit and default_vsz_limit ? > >Thank you

Re: Retrieive vsz_limit programatically

2021-11-20 Thread Plutocrat
value of teh dovecot.conf file of vsz_limit and default_vsz_limit ? Parse doveconf? Thank you

Re: Retrieive vsz_limit programatically

2021-11-20 Thread William Edwards
> Op 20 nov. 2021 om 18:23 heeft Joan Moreau het volgende > geschreven: > >  > Hello > > > > How to get, programatically (C/C++), the value of teh dovecot.conf file of > vsz_limit and default_vsz_limit ? > Parse doveconf? > Thank you > >

Re: vsz_limit

2020-11-06 Thread Joan Moreau
SOrry, my mistake, the conversion type was wrong. So restrict_get_process_size is indeed consistent with vsz_limit Now, for the memory usage of the process, getrusage gives only the /max/ of the memory used, not the current THe only way I found is to fopen("/proc/self/status") an

Re: vsz_limit

2020-11-06 Thread Joan Moreau
test if it fails, (so it can fail separately, and I can "if ram remaining is above X") but the is really not clean On 2020-11-04 06:28, Aki Tuomi wrote: On 04/11/2020 05:19 Joan Moreau wrote: Hello I am looking for help around memory management 1 - How to get the current value

Re: vsz_limit

2020-11-06 Thread Joan Moreau
it fails, (so it can fail separately, and I can "if ram remaining is above X") but the is really not clean On 2020-11-04 06:28, Aki Tuomi wrote: On 04/11/2020 05:19 Joan Moreau wrote: Hello I am looking for help around memory management 1 - How to get the current value of "

Re: vsz_limit

2020-11-06 Thread Joan Moreau
am remaining is above X") but the is really not clean On 2020-11-04 06:28, Aki Tuomi wrote: On 04/11/2020 05:19 Joan Moreau wrote: Hello I am looking for help around memory management 1 - How to get the current value of "vsz_limit" from inside a plugin (namely https:

Re: vsz_limit

2020-11-06 Thread Aki Tuomi
erything on disk before the ram is exhausted (and break the process) > > > > > I tried to put a "fake" allocation to test if it fails, (so it can > > > > > fail separately, and I can "if ram remaining is above X") but the is > > > &g

Re: vsz_limit

2020-11-06 Thread Aki Tuomi
n 2020-11-04 06:28, Aki Tuomi wrote: > > > > > > > > > > > > > > > > > On 04/11/2020 05:19 Joan Moreau wrote: > > > > > > > > > > > > > > > Hello > > > > > I am looking for help around me

Re: vsz_limit

2020-11-04 Thread Joan Moreau
ely, and I can "if ram remaining is above X") but the is really not clean On 2020-11-04 06:28, Aki Tuomi wrote: On 04/11/2020 05:19 Joan Moreau wrote: Hello I am looking for help around memory management 1 - How to get the current value of "vsz_limit" from inside a plug

vsz_limit

2020-11-03 Thread Joan Moreau
Hello I am looking for help around memory management 1 - How to get the current value of "vsz_limit" from inside a plugin (namely https://github.com/grosjo/fts-xapian/ ) , especially for indexer-worker 2 - Is there a macro or function in dovecot to get the remaining free memory

Re: vsz_limit

2020-11-03 Thread Aki Tuomi
uomi wrote: > > > > > > > On 04/11/2020 05:19 Joan Moreau wrote: > > > > > > > > > Hello > > > I am looking for help around memory management > > > 1 - How to get the current value of "vsz_limit" from inside a plugin

Re: vsz_limit

2020-11-03 Thread Aki Tuomi
> On 04/11/2020 05:19 Joan Moreau wrote: > > > Hello > I am looking for help around memory management > 1 - How to get the current value of "vsz_limit" from inside a plugin (namely > https://github.com/grosjo/fts-xapian/ ) , especially for indexer-worker > 2

Re: vsz_limit

2020-11-03 Thread Aki Tuomi
> On 04/11/2020 05:19 Joan Moreau wrote: > > > Hello > I am looking for help around memory management > 1 - How to get the current value of "vsz_limit" from inside a plugin (namely > https://github.com/grosjo/fts-xapian/ ) , especially for indexer-worker > 2

Re: Leaked files in maildir "tmp" after vsz_limit crashes

2020-09-30 Thread Aki Tuomi
> On 30/09/2020 13:43 Peter Mogensen wrote: > > > Hi, > > Lately I've seen a few examples of users hitting the vsz_limit (usually > trying to "delete" mails i Spam/Junk by moving them to Trash with a > large dovecot.index.cache - which resulted in m

Leaked files in maildir "tmp" after vsz_limit crashes

2020-09-30 Thread Peter Mogensen
Hi, Lately I've seen a few examples of users hitting the vsz_limit (usually trying to "delete" mails i Spam/Junk by moving them to Trash with a large dovecot.index.cache - which resulted in mails left/leaked in the tmp directory of Trash. Sometimes it seems the client gets into

RE: Out of memory on lmtp vsz_limit

2018-02-27 Thread Terence Lau
lmtp vsz_limit How about you try moving the mail into another folder on daily basis, this way the INBOX would stay nice and empty. doveadm move -u arch...@company.com<mailto:arch...@company.com> Archive MAILBOX INBOX SENTBEFORE todays-date Aki On 16.02.2018 06:19, Terence Lau wrote: Bump.

Re: Out of memory on lmtp vsz_limit

2018-02-15 Thread Aki Tuomi
vice would be most appreciated. > >   > > Thanks. > >   > > *From:*Terence Lau > *Sent:* Wednesday, 24 January 2018 9:59 AM > *To:* 'dovecot@dovecot.org' > *Subject:* Out of memory on lmtp vsz_limit > >   > > Hi, > >   > > We’ve been gettin

RE: Out of memory on lmtp vsz_limit

2018-02-15 Thread Terence Lau
Bump. Any advice would be most appreciated. Thanks. From: Terence Lau Sent: Wednesday, 24 January 2018 9:59 AM To: 'dovecot@dovecot.org' Subject: Out of memory on lmtp vsz_limit Hi, We've been getting these types or errors for quite a while now ... Fatal: master: service(lmt

Out of memory on lmtp vsz_limit

2018-01-23 Thread Terence Lau
Hi, We've been getting these types or errors for quite a while now ... Fatal: master: service(lmtp): child 63477 returned error 83 (Out of memory (service lmtp { vsz_limit=4096 MB }, you may need to increase it) ... and these errors have been decreasing in occurrence as we increase

Re: indexer-worker out of memory with vsz_limit=750 MB?!

2016-05-17 Thread Timo Sirainen
> On 15 May 2016, at 17:28, aki.tu...@dovecot.fi wrote: > >> >> On May 15, 2016 at 2:48 PM Peer Heinlein >> wrote: >> >> >> >> We're running 2.2.24 with fts_lucene and I wonder why indexer-working >> can be out-of-mem

Re: indexer-worker out of memory with vsz_limit=750 MB?!

2016-05-15 Thread aki . tuomi
> On May 15, 2016 at 2:48 PM Peer Heinlein > wrote: > > > > We're running 2.2.24 with fts_lucene and I wonder why indexer-working > can be out-of-memory even with > > vsz_limit=750 MB > > ?! > > Peer > > > May 15 12:14:51 do

indexer-worker out of memory with vsz_limit=750 MB?!

2016-05-15 Thread Peer Heinlein
We're running 2.2.24 with fts_lucene and I wonder why indexer-working can be out-of-memory even with vsz_limit=750 MB ?! Peer May 15 12:14:51 dobby4 dovecot: indexer-worker(u...@example.com): Fatal: pool_system_realloc(134217728): Out of memory May 15 12:14:51 dobby4 dovecot: indexer-w

vsz_limit of service doveadm "ignored"?

2015-07-08 Thread Philipp
Hello, dovecot 2.2.18 on CentOS6.5 Jul 08 11:53:44 dsync-server(system): Fatal: master: service(doveadm): child 32554 returned error 83 (Out of memory (service doveadm { vsz_limit=521 MB }, you may need to increase it) - set CORE_OUTOFMEM=1 environment to get core dump) I tried increasing

Re: vsz_limit is 18,447 PB

2014-09-24 Thread Dan Langille
haps a web interface. >>>>> >>>> >>>>> >>>>> But there are some interesting values when I look at the output of >>>>> doveconf. Specifically, vsz_limit is 18,447 PB… yeah, that’s pretty big. >>>>> >>&

Re: vsz_limit is 18,447 PB

2014-09-15 Thread Dan Langille
gt;>> But there are some interesting values when I look at the output of >>>> doveconf. Specifically, vsz_limit is 18,447 PB… yeah, that’s pretty big. >>>> >>>> service imap-login { >>>> vsz_limit = 18446744073709551615 B >>>> } &g

Re: vsz_limit is 18,447 PB

2014-09-09 Thread Joseph Tam
On Tue, 9 Sep 2014, dovecot-requ...@dovecot.org wrote: vsz_limit = 18446744073709551615 B } Still the same value? why not 265MB? I guess this is Dovecot's approximation of infinity. It's the largest value that fits into a 64-bit signed integer (2^64-1). Joseph Tam

Re: vsz_limit is 18,447 PB

2014-09-09 Thread Darac Marjal
". My doveconf outputs the same thing on services which don't > > have vsz_limit set explicitly, but when I list /proc/[pid]/limits on > > such a service, the row called "Max address space" (which is - AFAIK - > > limit on vsz) shows 2GB, a value of default

Re: vsz_limit is 18,447 PB

2014-09-08 Thread Robert L Mathews
On 9/8/14 3:38 PM, Jiri Bourek wrote:> Hm, I can only guess (someone with more knowledge of dovecot source code > probably knows better), but it seems like that value is magic number for > "not set". My doveconf outputs the same thing on services which don't > have vs

Re: vsz_limit is 18,447 PB

2014-09-08 Thread Jiri Bourek
Background: I’m in the only user on this system, but this server is accessed by my phone, my laptop, my tablet, and perhaps a web interface. But there are some interesting values when I look at the output of doveconf. Specifically, vsz_limit is 18,447 PB… yeah, that’s pretty big

Re: vsz_limit is 18,447 PB

2014-09-08 Thread Dan Langille
On Sep 7, 2014, at 4:39 AM, Jiri Bourek wrote: > On 6.9.2014 22:38, Dan Langille wrote: >> I encountered this error on FreeBSD 9.3 with dovecot2-2.2.13_3 >> >> Short version; vsz_limit is 18,447 PB and it ran out of RAM. Suggestions >> for change? >> &g

Re: vsz_limit is 18,447 PB

2014-09-07 Thread Jiri Bourek
On 6.9.2014 22:38, Dan Langille wrote: I encountered this error on FreeBSD 9.3 with dovecot2-2.2.13_3 Short version; vsz_limit is 18,447 PB and it ran out of RAM. Suggestions for change? Sep 6 03:39:32 mailjail dovecot: imap(dan): Panic: file imap-fetch.c: line 556 (imap_fetch_more

vsz_limit is 18,447 PB

2014-09-06 Thread Dan Langille
I encountered this error on FreeBSD 9.3 with dovecot2-2.2.13_3 Short version; vsz_limit is 18,447 PB and it ran out of RAM. Suggestions for change? Sep 6 03:39:32 mailjail dovecot: imap(dan): Panic: file imap-fetch.c: line 556 (imap_fetch_more): assertion failed: (ctx->cli

Re: [Dovecot] vsz_limit

2012-02-09 Thread Héctor Moreno Blanco
.org Asunto: Re: [Dovecot] vsz_limit On 9.2.2012, at 10.41, Héctor Moreno Blanco wrote: > I can see these errors, but I'm not sure if they have something to do with my > problem: > > ... > Feb 8 12:04:57 XX dovecot: imap-login: Error: read(imap) failed: > Connection reset

Re: [Dovecot] vsz_limit

2012-02-09 Thread Timo Sirainen
On 9.2.2012, at 10.41, Héctor Moreno Blanco wrote: > I can see these errors, but I'm not sure if they have something to do with my > problem: > > ... > Feb 8 12:04:57 XX dovecot: imap-login: Error: read(imap) failed: > Connection reset by peer > Feb 8 12:04:57 XX dovecot: imap-login:

Re: [Dovecot] vsz_limit

2012-02-09 Thread Héctor Moreno Blanco
antos E-28760 Madrid Tel. +34 91 807 21 00 Fax +34 91 807 21 99 www.gmv.com       -Mensaje original- De: Timo Sirainen [mailto:t...@iki.fi] Enviado el: jueves, 09 de febrero de 2012 0:29 Para: Héctor Moreno Blanco CC: dovecot@dovecot.org Asunto: Re: [Dovecot] vsz_limit On 8.2.20

Re: [Dovecot] vsz_limit

2012-02-08 Thread Timo Sirainen
On 8.2.2012, at 10.58, Héctor Moreno Blanco wrote: > The problem is at the moment of maximum load of the system. What problem? Does Dovecot log any errors?

Re: [Dovecot] vsz_limit

2012-02-08 Thread David Warden
see many > imap sessions but there are also many imap-login processes, which is weird. > Has it something to do with any parameter of our configuration? We think is > something with the vsz_limit parameter. How can we tune it? I'm not 100% sure but if this is the case but it loo

[Dovecot] vsz_limit

2012-02-08 Thread Héctor Moreno Blanco
= 5000 } service auth { client_limit = 9000 unix_listener auth-master { group = vmail mode = 0700 user = vmail } user = root vsz_limit = 2 G } service imap-login { executable = /usr/local/dovecot/libexec/dovecot/imap-login inet_listener imap { address = * port = 143

Re: [Dovecot] Calculation of suggested vsz_limit values

2011-12-19 Thread Timo Sirainen
On Mon, 2011-12-19 at 22:45 -0800, Robin wrote: > Timo wrote: > > > Not really. For mail related processes (imap, pop3, lmtp) you could > > find the largest dovecot.index.cache file and make sure that > > vsz_limit is at least 3 times that. > > Yikes. Asid

Re: [Dovecot] Calculation of suggested vsz_limit values

2011-12-19 Thread Robin
Timo wrote: Not really. For mail related processes (imap, pop3, lmtp) you could find the largest dovecot.index.cache file and make sure that vsz_limit is at least 3 times that. Yikes. Aside from forcing users to "prune" mailboxes, what do you suggest when vsz_limit exceeds avai

Re: [Dovecot] Calculation of suggested vsz_limit values

2011-12-19 Thread Timo Sirainen
On 16.12.2011, at 11.09, Nikolaos Milas wrote: > I would like to ask on suggested vsz_limit values. > > Is there any way of calculating such values? Not really. For mail related processes (imap, pop3, lmtp) you could find the largest dovecot.index.cache file and make sure that vsz_li

Re: [Dovecot] Calculation of suggested vsz_limit values

2011-12-18 Thread Nikolaos Milas
Hi, No hints about vsz_limit values? Anyone? Thanks, Nick On 16/12/2011 11:09 πμ, Nikolaos Milas wrote: Hello, I would like to ask on suggested vsz_limit values. Is there any way of calculating such values? How should we determine them? I don't want to risk wrong values (and pos

[Dovecot] Calculation of suggested vsz_limit values

2011-12-16 Thread Nikolaos Milas
Hello, I would like to ask on suggested vsz_limit values. Is there any way of calculating such values? How should we determine them? I don't want to risk wrong values (and possible errors) on a production system, if I upgrade to 2.0.16 where vsz_limit values are enforced (I read re

[Dovecot] good value of vsz_limit

2011-01-05 Thread fakessh @
hello dovecot network hello Timo I've just upgraded to 2.0.8 dovecot and I wonder it should be good value of vsz_limit I put value as 64 M but I do not know if it's good value return are welcome sincerely and happy new year this my dovecot -n ~]# /usr/sbin/dovecot -n # 2.0.8: /e

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Thomas Leuxner
On Wed, Nov 17, 2010 at 02:34:58PM +, Timo Sirainen wrote: > Oh, right, that was causing problems too. Fixed: > http://hg.dovecot.org/dovecot-2.0/rev/2456cd0917d3 service managesieve-login { [...] vsz_limit = 64 M } service lmtp { [...] vsz_limit = 0 } Patched. Fixes both.

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Timo Sirainen
On 17.11.2010, at 8.28, Thomas Leuxner wrote: > $ invoke-rc.d dovecot start > Starting IMAP/POP3 mail server: dovecotdoveconf: Fatal: Error in > configuration file /etc/dovecot/dovecot.conf: service(lmtp): vsz_limit > is too low > failed! > > service lmtp { > [...]

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Robert Schetterer
y are now, because of not being set in the first >>> instance. >> >> hm i have i.e >> >> # If you set service_count=0, you probably need to grow this. >> #vsz_limit = 64M >> >> >> in 10-master.conf >> >> so whatever there is/

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Robert Schetterer
ave i.e > > # If you set service_count=0, you probably need to grow this. > #vsz_limit = 64M > > > in 10-master.conf > > so whatever there is/was a warning in some default conf having your eyes > on this parameter > > so i stay > there can only be startin

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Robert Schetterer
As with all defaults they > should work out of the box. They are *not* overriden by specific custom > values. Well, actually they are now, because of not being set in the first > instance. hm i have i.e # If you set service_count=0, you probably need to grow this. #vsz_limit = 64M

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Thomas Leuxner
On Wed, Nov 17, 2010 at 09:57:59AM +0100, Robert Schetterer wrote: > i think there can only be defaults if all parameters are default > ( at a new clean install from scratch ) These are unset defaults as far as I can tell. As with all defaults they should work out of the box. They are *not* overri

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Robert Schetterer
Am 17.11.2010 09:28, schrieb Thomas Leuxner: > On Wed, Nov 17, 2010 at 05:01:27AM +, Timo Sirainen wrote: >> LMTP shouldn't have had that problem.. Unless you've explicitly changed >> those in the config file? See doveconf -n|grep vsz_limit > > Did some inves

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-17 Thread Thomas Leuxner
On Wed, Nov 17, 2010 at 05:01:27AM +, Timo Sirainen wrote: > LMTP shouldn't have had that problem.. Unless you've explicitly changed those > in the config file? See doveconf -n|grep vsz_limit Did some investigation now and could bring up the latest and greatest by adding

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread Thomas Leuxner
mber seeing the same error for that as well, so not sure >> what other services would also miss the defaults. Stopped trying after those >> two... > > LMTP shouldn't have had that problem.. Unless you've explicitly changed those > in the config file? See doveconf -

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread Timo Sirainen
vecotdoveconf: Fatal: Error in configuration file >>> /etc/dovecot/dovecot.conf: service(managesieve-login): vsz_limit is too low >>> failed! >> >> Upgrade your pigeonhole too. > > Guess it's not committed there yet as I'm pulling from Stephan's

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread Thomas Leuxner
tc/dovecot/dovecot.conf: service(managesieve-login): vsz_limit is too low >> failed! > > Upgrade your pigeonhole too. Guess it's not committed there yet as I'm pulling from Stephan's auto-build repo. As for 'lmtp' I remember seeing the same error for that as we

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread Timo Sirainen
cot.conf: service(managesieve-login): vsz_limit is too low > failed! Upgrade your pigeonhole too.

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread Thomas Leuxner
Am 16.11.2010 um 23:26 schrieb Robert Schetterer: > i am not sure but i think this is a warning new to 2.0.7 > high the limits or/and configure dependend parameters right and see if > it works Well it does not start at all when it throws that. So it's kind of a deadly ultimate warning. Thomas

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread Robert Schetterer
Am 16.11.2010 22:09, schrieb Thomas Leuxner: > Latest Mercurial seems to miss defaults for some services e.g. 'managesieve' > and 'lmtp'. Example error message upon start: > > dovecotdoveconf: Fatal: Error in configuration file > /etc/dovecot/dovecot.conf: se

Re: [Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread David Ford
ile > /etc/dovecot/dovecot.conf: service(managesieve-login): vsz_limit is too low > failed! > > Regards > Thomas

[Dovecot] Dovecot 2.0.7 (8793036f6de8) seems to miss some defaults for vsz_limit

2010-11-16 Thread Thomas Leuxner
Latest Mercurial seems to miss defaults for some services e.g. 'managesieve' and 'lmtp'. Example error message upon start: dovecotdoveconf: Fatal: Error in configuration file /etc/dovecot/dovecot.conf: service(managesieve-login): vsz_limit is too low failed! Regards Thomas