Ian B | 1 Oct 2008 02:48
Picon
Gravatar

Re: quota warnings clarification


> 
> Well... the main use for Quotas is for rejecting NEW
> messages at
> delivery time - not for controlling a static set of
> mailboxes.
> 
> Are you saying you didn't even test by sending yourself
> a test message?
> 
> -- 
> 

The way I was testing was by setting the quota warning threshold low like 1%,2%,3% then sending myself test
messages to try and generate a warning message. I would open my inbox in Thunderbird and see the quota level
reach 1%,2% etc but no warning message. It was only when I actually deleted a message from my inbox (move to
trash) that a warning was generated.

      Make the switch to the world's best email. Get Yahoo!7 Mail! http://au.yahoo.com/y7mail

Christopher J. Buckley | 1 Oct 2008 03:43
Favicon

Re: disbale to responded to an unrequested SSL Certificate

Andre Hübner wrote:
> Hi dovecot-list,
> 
> just a easy question today ;)
> 
> Customer did on Server a PCI-Test to test security to fit worldpay requirements.

NB: PCI is not to fit Worldpay's requirements; but rather the body of 
PCI-DSS (Visa & Mastercard).

1. What was the scanning tool? Qualys?
2. What level of severity was this flagged as?  From when i've done PCI 
audit's, anything > 2 needed addressing, anything <=2 was able to pass.
It may be the case your customer has nothing to worry about with regards 
to this specific warning...

Cheers,

--

-- 
Kind Regards,           ::   http://www.cjbuckley.net/
Chris Buckley           ::   http://photos.cjbuckley.net/

Nicolas Letellier | 1 Oct 2008 10:52
Favicon

Re: create folder automatically

Le Tue, 30 Sep 2008 13:27:57 -0300,
Eduardo M KALINOWSKI <eduardo <at> kalinowski.com.br> a écrit :

> Seth Mattinen escreveu:
> > Nicolas Letellier wrote:
> >   
> >> Hello.
> >>
> >> I install a sieve rule automatically when a mailbox is created,
> >> like: if exists "X-Spam-Flag" {
> >>         fileinto "Junk";
> >>         stop;
> >> }
> >>
> >> However, sometimes, this folder does not exist. How create it
> >> automatically?
> >>
> >>     
> > It is created automatically (at least on mine it does).
> >   
> 
> Indeed, the only way for deliver _not_ to create a folder that does
> not exist is by giving the -n command line option, as stated in
> http://wiki.dovecot.org/LDA .
> 
Hello.

Indeed, the folder is created with the sieve rule (cf precedent mail). I
see this line in my deliver log:

(Continue reading)

Oli Schacher | 1 Oct 2008 10:59
Picon

Unknown dict module: mysql

Hi

I'm trying to set up the dict/expiry plugins, but the dict server always
tells me it can't find the modules although they should be there and
compiled in.

System is: Centos 5.2 64 bit, Using rpm from
http://atrpms.net/dist/el5/dovecot/

dovecot --version
1.1.3

Relevant config:

dict {
  quotadict = mysql:/etc/dovecot-dict-quota.conf
  expire = mysql:/etc/dovecot-dict-expire.conf
}

plugin {

  quota = dict:::proxy::quotadict
  quota_rule = *:storage=10M:messages=1000
  quota_warning = storage=95%% /usr/local/bin/quotawarning.py 95
  quota_warning2 = storage=75%% /usr/local/bin/quotawarning.py 75

  acl = vfile:/etc/dovecot-acls

  expire = Trash 30 Trash/* 30 Spam 14
  expire_dict = proxy::expire
(Continue reading)

Ralf Hildebrandt | 1 Oct 2008 11:49
Picon
Favicon

"dovecot: Maximum number of mail processes exceeded"

At noon, I often get "dovecot: Maximum number of mail processes
exceeded"

I'm at my wits end, which parameter needs to be increased further?

# 1.1.3: /usr/local/etc/dovecot.conf
protocols: imap imaps pop3s
ssl_cert_file: /etc/ssl/certs/postamt.pem
ssl_key_file: /etc/ssl/private/postamt.key
disable_plaintext_auth: no
version_ignore: yes
login_dir: /usr/local/var/run/dovecot/login
login_executable(default): /usr/local/libexec/dovecot/imap-login
login_executable(imap): /usr/local/libexec/dovecot/imap-login
login_executable(pop3): /usr/local/libexec/dovecot/pop3-login
login_process_per_connection: no
login_greeting_capability(default): yes
login_greeting_capability(imap): yes
login_greeting_capability(pop3): no
login_processes_count: 32
login_max_processes_count: 2048
login_max_connections: 512
max_mail_processes: 1024
mail_max_userip_connections: 2048
verbose_proctitle: yes
mail_location: maildir:~/Maildir
fsync_disable: yes
maildir_copy_preserve_filename: yes
mail_drop_priv_before_exec: yes
mail_executable(default): /usr/local/sbin/imap_login_script
(Continue reading)

Sascha Wilde | 1 Oct 2008 11:57
Picon
Favicon

Re: ACL plugin

"Matvey Soloviev" <blackhole89 <at> gmail.com> writes:

> I am working on implementing support for the RFC4314 ACL management commands
> and responses in the ACL plugin included with dovecot
[...]

Matvey finished a first version of the IMAP front end to the ACL plugin.

You can find the changes for dovecot 1.1.3 here:
  http://hg.intevation.org/kolab/dovecot-1.1_acl-branch/
and as we decided to move on to 1.2, here:
  http://hg.intevation.org/kolab/dovecot-1.2_acl-branch/

As of writing this the changes for 1.1.3 and 1.2 are the same (but the
1.2 version isn't really tested yet).

cheers
sascha
--

-- 
Sascha Wilde                                      OpenPGP key: 4BB86568
Intevation GmbH, Osnabrück             http://www.intevation.de/~wilde/
Amtsgericht Osnabrück, HR B 18998             http://www.intevation.de/
Geschäftsführer: Frank Koormann, Bernhard Reiter, Dr. Jan-Oliver Wagner
Heiko Schlichting | 1 Oct 2008 12:39
Picon
Picon
Favicon

Re: "dovecot: Maximum number of mail processes exceeded"

Hi Ralf,

> At noon, I often get "dovecot: Maximum number of mail processes
> exceeded"
> 
> I'm at my wits end, which parameter needs to be increased further?

You have to increase "max_mail_processes" as this code emits the error
message:

        if (mail_process_count == set->max_mail_processes) {
                i_error("Maximum number of mail processes exceeded");
                return MASTER_LOGIN_STATUS_INTERNAL_ERROR;
        }

[...]
> max_mail_processes: 1024
[...]

But the question is: how much user are accessing your server
simultaneously? Is it really more than 1024 or is mail_process_count wrong?
Your overpowered server is surely able to handle more than 1024 connections.

Heiko

Heiko Schlichting          Freie Universität Berlin
heiko <at> FU-Berlin.DE         Zentraleinrichtung für Datenverarbeitung (ZEDAT)
Telefon +49 30 838-54327   Fabeckstraße 32
Telefax +49 30 838454327   14195 Berlin

(Continue reading)

Marcus Rueckert | 1 Oct 2008 13:10
Picon
Favicon

Re: create folder automatically

> Indeed, the folder is created with the sieve rule (cf precedent mail). I
> see this line in my deliver log:
> 
> Oct  1 10:48:42 trinite deliver(test <at> domain.fr):
> msgid=<20081001090028.CD851886C <at> mail.domain.biz>: saved mail to Junk
> 
> However, when we connect us in the webmail, or download mail with IMAP,
> the folder is not present.
> 
> The folder is created, but no line about it is present in subscriptions
> file. So, the folder is not viewable.
> 
> And we can't create it in a IMAP connection because it exists... (but
> not visible).
> 
> Thanks for your help.

how about subscribing that folder? autocreation doesnt imply
autosubscribe. i am sure users might be a bit angry if you autosubscribe
any folder of theirs, esp. if they read their mails via a mobile device.

    darix

--

-- 
           openSUSE - SUSE Linux is my linux
               openSUSE is good for you
                   www.opensuse.org

Ralf Hildebrandt | 1 Oct 2008 13:16
Picon
Favicon

Re: "dovecot: Maximum number of mail processes exceeded"

* Heiko Schlichting <dovecot-l <at> FU-Berlin.DE>:
> Hi Ralf,
> 
> > At noon, I often get "dovecot: Maximum number of mail processes
> > exceeded"
> > 
> > I'm at my wits end, which parameter needs to be increased further?
> 
> You have to increase "max_mail_processes" as this code emits the error
> message:
> 
>         if (mail_process_count == set->max_mail_processes) {
>                 i_error("Maximum number of mail processes exceeded");
>                 return MASTER_LOGIN_STATUS_INTERNAL_ERROR;
>         }
> 
> [...]
> > max_mail_processes: 1024
> [...]
> 
> But the question is: how much user are accessing your server
> simultaneously? Is it really more than 1024 or is mail_process_count wrong?

     ├─runsvdir─┬─runsv───run───perl
     │          ├─runsv───ntpd
     │          └─runsv───dovecot─┬─2*[dovecot-auth]
     │                            ├─945*[imap]
     │                            ├─32*[imap-login]
     │                            └─32*[pop3-login]
			      
(Continue reading)

Nicolas Letellier | 1 Oct 2008 14:28
Favicon

Re: create folder automatically

Le Wed, 1 Oct 2008 13:10:05 +0200,
Marcus Rueckert <darix <at> opensu.se> a écrit :

> > Indeed, the folder is created with the sieve rule (cf precedent
> > mail). I see this line in my deliver log:
> > 
> > Oct  1 10:48:42 trinite deliver(test <at> domain.fr):
> > msgid=<20081001090028.CD851886C <at> mail.domain.biz>: saved mail to Junk
> > 
> > However, when we connect us in the webmail, or download mail with
> > IMAP, the folder is not present.
> > 
> > The folder is created, but no line about it is present in
> > subscriptions file. So, the folder is not viewable.
> > 
> > And we can't create it in a IMAP connection because it exists...
> > (but not visible).
> > 
> > Thanks for your help.
> 
> how about subscribing that folder? autocreation doesnt imply
> autosubscribe. i am sure users might be a bit angry if you
> autosubscribe any folder of theirs, esp. if they read their mails via
> a mobile device.
> 
>     darix
> 
By default, my users must subscribe to all folders.

--

-- 
(Continue reading)


Gmane