Displaying 20 results from an estimated 185 matches for "quota_status_success".
2013 Aug 07
2
Override master service settigs with spaces
...know how to escape them properly.
Here's what I've tried so far. (Note: This is just the easiest/silliest
test case I could come up with; not the actual setting or service I want to
overwrite.)
conf.d/10-master.conf:
service quota-status {
executable = quota-status -p postfix -o plugin/quota_status_success=Testing 1 2 3
inet_listener {
port = 12340
}
}
Reaction:
$ printf "recipient=test at example.org\nsize=0\n\n" | nc 127.0.0.1 12340
action=Testing
conf.d/10-master.conf:
service quota-status {
executable = quota-status -p postfix -o "plugin/quota_status_success=Testing 1...
2017 Feb 01
0
quota-status returns quota_status_success when email would put user over quota
...executable = quota-status -p postfix
inet_listener {
port = 12340 # You can choose any port you want
}
client_limit = 1
}
plugin {
quota = count:User quota # or some other backend
quota_rule = *:storage=10M # or from userdb
quota_grace = 10%%
# 10% is the default
quota_status_success = DUNNO
quota_status_nouser = DUNNO
quota_status_overquota = "552 5.2.2 Mailbox is full"
quota_vsizes = yes
}
On 01.02.2017 00:20, Christian Kivalo wrote:
>
> Am 31. J?nner 2017 16:36:35 MEZ schrieb Kristian Pedersen <kp at asom-net.dk>:
>> Hi list,
>>
>...
2017 Jan 31
0
quota-status returns quota_status_success when email would put user over quota
...refix =
> }
> passdb {
> args = /etc/dovecot/local-sql.conf
> driver = sql
> }
> plugin {
> quota = maildir:User quota
> quota_rule = *:storage=200M
> quota_status_nouser = 551 5.5.1 User not found
> quota_status_overquota = 552 5.2.2 Mailbox is full
> quota_status_success = DUNNO
> }
> protocols = imap pop3
> service auth {
> unix_listener /var/spool/postfix/private/auth {
> group = postfix
> mode = 0660
> user = postfix
> }
> unix_listener auth-master {
> mode = 0600
> user = vmail
> }
> user = ro...
2017 Jan 31
3
quota-status returns quota_status_success when email would put user over quota
...; args = /etc/dovecot/local-sql.conf
>> driver = sql
>> }
>> plugin {
>> quota = maildir:User quota
>> quota_rule = *:storage=200M
>> quota_status_nouser = 551 5.5.1 User not found
>> quota_status_overquota = 552 5.2.2 Mailbox is full
>> quota_status_success = DUNNO
>> }
>> protocols = imap pop3
>> service auth {
>> unix_listener /var/spool/postfix/private/auth {
>> group = postfix
>> mode = 0660
>> user = postfix
>> }
>> unix_listener auth-master {
>> mode = 0600
>>...
2016 Jul 02
3
quota-status service
...quota-status" returns nothing.
I am unable to find a "quota-status" file on my machine. Where is the
executable located?
What does the "-p postfix" option do?
Are there any other command line options?
The above wiki page shows three quota_status_* options in use:
quota_status_success = DUNNO
quota_status_nouser = DUNNO
quota_status_overquota = "552 5.2.2 Mailbox is full"
Where are their meanings documented?
What are the allowed values?
Are there other quota_status_* options?
Thanks in advance.
Thanks,
Michael
2017 Jan 24
2
quota-status returns quota_status_success when email would put user over quota
...lbox Trash {
special_use = \Trash
}
prefix =
}
passdb {
args = /etc/dovecot/local-sql.conf
driver = sql
}
plugin {
quota = maildir:User quota
quota_rule = *:storage=200M
quota_status_nouser = 551 5.5.1 User not found
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
}
protocols = imap pop3
service auth {
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0660
user = postfix
}
unix_listener auth-master {
mode = 0600
user = vmail
}
user = root
}
service imap-login {
client_limit = 1024
pro...
2018 Nov 22
4
LDAP stored quota
...1M
Bellow my configuration files:
conf.d/10-mail.conf
mail_plugins = $mail_plugins quota
conf.d/20-imap.conf
protocol imap {
mail_plugins = $mail_plugins imap_quota
}
conf.d/90-quota.conf
plugin {
quota = maildir:User quota
quota_rule2 = Trash:storage=+100M
quota_grace = 10%%
quota_status_success = DUNNO
quota_status_nouser = DUNNO
quota_status_overquota = "552 5.2.2 Mailbox is full"
}
dovecot-ldap.conf.ext
user_attrs= \
=mailRoutingAddress=user \
=uid=vmail \
=gid=mail \
=home=/var/mail/%d/%n \
=quota_rule=*:bytes=%{ldap:departmentNumber}
Can somebody help me with this...
2018 Sep 16
3
Quotas not working with roundcube
...? driver = bsdauth
}
passdb {
? args = /etc/dovecot/dovecot.passwd
? driver = passwd-file
}
plugin {
? quota_grace = 10%%
? quota_rule = *:storage=2G
? quota_rule2 = Trash:storage=+200M
? quota_rule3 = SPAM:ignore
? quota_status_nouser = DUNNO
? quota_status_overquota = 552 5.2.2 Mailbox is full
? quota_status_success = DUNNO
? quota_warning = storage=95%% quota-warning 95 %u
? quota_warning2 = storage=80%% quota-warning 80 %u
}
ssl_ca = /etc/ssl/certs/CA_Intermed_Lets_Encrypt.crt
ssl_cert = </etc/ssl/certs/imap.mydomain.org.crt
ssl_key =? # hidden, use -P to show it
ssl_key_password =? # hidden, use -P to sh...
2015 Oct 03
0
dovecot quota service for postfix
Hello,
Thanks for the clarifications
plugin {
quota = maildir:User quota
quota_rule = *:storage=1G
quota_grace = 10%%
# 10% is the default
quota_status_success = DUNNO
quota_status_nouser = DUNNO
quota_status_overquota = "552 5.2.2 Mailbox is full"
}
The above configurations is my default for all users. but my mail system
is using mbox format and not maildir.... so what should i change in the
above configuration to use mbox INSTEAD...
2015 Sep 26
1
dovecot quota service for postfix
....
Please confirm if what i mentioned above is correct and that i understand
correctly how dove-cot policy works with postfix.
Kindly check my configuration below and advise the missing parts to add...
plugin {
quota_rule = *:storage=1G
quota_grace = 10%%
# 10% is the default
quota_status_success = DUNNO
quota_status_nouser = DUNNO
quota_status_overquota = "552 5.2.2 Mailbox is full"
...
}
The above configurations is for all users which is not override by quota
rules in userdb's extra fields in my password file below.
Is the above configuration missing some thi...
2017 Jul 20
1
Dovecot imap
...= plain login
disable_plaintext_auth = no
mail_location = maildir:~/Maildir
mail_plugins = " quota"
mbox_write_locks = fcntl
passdb {
driver = pam
}
plugin {
quota = fs:User quota
quota_grace = 10%%
quota_status_nouser = DUNNO
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
}
protocols = imap pop3
userdb {
driver = passwd
}
protocol imap {
mail_plugins = " quota imap_quota"
}
protocol pop3 {
pop3_uidl_format = %08Xu%08Xv
}
2018 Sep 17
2
Quotas not working with roundcube
...le
>> }
>> plugin {
>> ? quota_grace = 10%%
>> ? quota_rule = *:storage=2G
>> ? quota_rule2 = Trash:storage=+200M
>> ? quota_rule3 = SPAM:ignore
>> ? quota_status_nouser = DUNNO
>> ? quota_status_overquota = 552 5.2.2 Mailbox is full
>> ? quota_status_success = DUNNO
>> ? quota_warning = storage=95%% quota-warning 95 %u
>> ? quota_warning2 = storage=80%% quota-warning 80 %u
>> }
>> ssl_ca = /etc/ssl/certs/CA_Intermed_Lets_Encrypt.crt
>> ssl_cert = </etc/ssl/certs/imap.mydomain.org.crt
>> ssl_key =? # hidden, use...
2015 Feb 23
2
Quota-status service on Director
...listen on TCP/IP Port for connections.
service quota-status {
? executable = quota-status -p postfix
? inet_listener {
??? address = 10.0.1.44
??? port = 12340
? }
? client_limit = 1
}
# Plugin configuration.
# Return messages for requests by quota status: success, nouser and overquota.
plugin {
? quota_status_success = DUNNO
? quota_status_nouser = DUNNO
? quota_status_overquota = "552 5.2.2 Mailbox is over quota"
}
After restarting the director service I try to query the quota status service:
printf "recipient=user at domain.de\nsize=100000\n\n" | nc 10.0.1.44 12340
The output is:
actio...
2019 Mar 19
2
Dovecot quota and Postfix smtpd_recipient_restrictions?
...quota
conf.d/20-imap.conf:
protocol imap {
# Space separated list of plugins to load (default is global
mail_plugins).
mail_plugins = $mail_plugins imap_quota
}
conf.d/90-quota.conf: (for use with the quota-status service)
plugin {
quota_grace = 10%%
# 10% is the default
quota_status_success = DUNNO
quota_status_nouser = DUNNO
quota_status_overquota = "552 5.2.2 Mailbox is full"
}
/etc/dovecot/conf.d/90-quota.conf:
plugin {
quota = maildir
quota_rule = *:storage=3G
quota_rule2 = Trash:storage=+100M
# LDA/LMTP allows saving the last mail to bring user from und...
2015 Jul 17
1
Quota policy service not rejecting messages when user over quota
...ase. Thanks in advance for any
pointers!
--> Note: I'm the quota_status_* directives have been set as is for
testing purposes only. I'm fully aware not to do that in production.
plugin {
quota = maildir:User quota
quota_rule = *:bytes=1G
quota_rule2 = Trash:storage=+10%%
quota_status_success = "250 Quota status success"
quota_status_nouser = "551 User not found"
quota_status_overquota = "552 5.2.2 Recipient mailbox is full"
}
service quota-status {
executable = quota-status -p postfix
unix_listener /var/spool/postfix/private/policy-quota {...
2018 Jan 16
0
nfs flush requires mail_fsync=always
...{
quota = dict:User quota::proxy::sqlquota
quota_grace = 10%%
quota_rule = *:storage=1000m:messages=300000
quota_rule2 = Trash:storage=+10%%:messages=+10%%
quota_rule3 = Junk:storage=+20%%:messages=+20%%
quota_status_nouser = DUNNO
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
quota_warning = storage=75%%:messages=75%% quota-warning 75 %u
quota_warning2 = storage=95%%:messages=95%% quota-warning 95 %u
quota_warning3 = -storage=100%%:messages=100%% quota-warning below %u
sieve = /etc/dovecot/sieve/default.sieve
sieve_global_dir = /etc/dovecot/sieve
}
pro...
2014 Feb 20
1
Quota-Status issue
...Junk
autosubscribe = INBOX
autosubscribe2 = Sent
autosubscribe3 = Trash
autosubscribe4 = Drafts
autosubscribe5 = Junk
quota = dict:user::proxy::quotadict
quota_grace = 10%%
quota_rule = *:storage=1G
quota_status_nouser = DUNNO
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
quota_warning = storage=85%% quota-warning 85 %u
quota_warning2 = storage=90%% quota-warning 90 %u
quota_warning3 = storage=95%% quota-warning 95 %u
sieve = /%Lh/sieve/dovecot.sieve
sieve_dir = /%Lh/sieve
sieve_global_dir = /var/vmail/sieve
sieve_global_path = /var/vmail/sieve...
2016 Oct 10
2
Quota-status service on Director
...;> inet_listener {
>> address = 10.0.1.44
>> port = 12340
>> }
>> client_limit = 1
>> }
>> # Plugin configuration.
>> # Return messages for requests by quota status: success, nouser and
>> overquota.
>> plugin {
>> quota_status_success = DUNNO
>> quota_status_nouser = DUNNO
>> quota_status_overquota = "552 5.2.2 Mailbox is over quota"
>> }
>>
>> After restarting the director service I try to query the quota status
>> service:
>>
>> printf "recipient=user at doma...
2017 Oct 28
2
Quota warning executable can not log to /dev/stdout
...in {
quota = maildir:User quota
quota_exceeded_message = Storage quota for user %u exceeded (Benutzer
%u hat sein Speichervolumen ueberschritten)
quota_grace = 10%%
quota_rule2 = Trash:storage=+100M
quota_status_nouser = DUNNO
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
quota_warning = storage=85%% quota-warning 80 %u %d
}
protocols = imap lmtp sieve
service auth {
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0666
user = postfix
}
unix_listener auth-userdb {
mode = 0777
}
}
service lmtp {
unix...
2018 Oct 15
2
Problems with qouta_clone plugin
...plugin {
last_login_dict = proxy::lastlogin
last_login_key = last-login/%u
mail_replica = tcp:imapb01.litmail.dk:12345
quota = maildir:User quota
quota_clone_dict = proxy::quotaclone
quota_grace = 10%%
quota_status_nouser = DUNNO
quota_status_overquota = 552 5.2.2 Mailbox is full
quota_status_success = DUNNO
}
protocols = imap
replication_max_conns = 100
service aggregator {
fifo_listener replication-notify-fifo {
mode = 0666
user = vmail
}
unix_listener replication-notify {
mode = 0666
user = vmail
}
}
service auth-worker {
user = $default_internal_user
}
service auth...