Re: [Dovecot] how to configure my scripts sieves for the home root

2010-05-19 Thread Anton Dollmaier
Hi, how to configure my scripts sieves for the home root I encounter these errors in the logs 2010-05-19 14:14:03 deliver(root): Info: sieve runtime error: Not a bytecode file 2010-05-19 14:14:03 deliver(root): Error: sieve_execute_bytecode(/root/.dovecot.sievec) failed please redirect all

Re: [Dovecot] Sieve GUI

2010-06-02 Thread Anton Dollmaier
Hi, has someone tried this or knows something similar ? RoundCube in version 0.3 and later supports a plugin system and provides actually two different Sieve-plugins, one out of the box, the other one is available here: http://www.tehinterweb.co.uk/roundcube/#pisieverules both work and

Re: [Dovecot] Work with auth socket

2010-06-29 Thread Anton Dollmaier
Hi, I've wrote such script: use Authen::SASL::Authd, as suggested by Steffen. This code-snippet should help you: http://search.cpan.org/~sasha/Authen-SASL-Authd-0.04/lib/Authen/SASL/Authd.pm #!/usr/bin/perl use Authen::SASL::Authd qw(auth_cyrus auth_dovecot); $login = test; $passwd =

Re: [Dovecot] expire

2010-07-06 Thread Anton Dollmaier
Hi, I'm sure, I do something the wrong way. indeed. Check dovecot-wiki, section Dovecot v1.2: http://wiki.dovecot.org/Plugins/Expire create the expire-tool.sh and use this instead of the binary. best regards, Anton

Re: [Dovecot] Spam folder permission

2010-07-09 Thread Anton Dollmaier
hi, since Dovecot's deliver is creating folders for the user if needed - is there also a way of how to set the Spam folder for instance to a mode so that it can't be deleted by the user through IMAP anymore? use the autocreate-plugin: http://wiki.dovecot.org/Plugins/Autocreate

Re: [Dovecot] Unknown column username in where clause

2010-07-19 Thread Anton Dollmaier
Hi, I dont' know where the field username should come from because I don't use this field (or query). perhabs this is the problem? ;-) The relevant files are: Output of dovecot -n would be better, together with the additional files. dovecot-sql.conf.ext

Re: [Dovecot] script to extract From: addresses

2010-07-25 Thread Anton Dollmaier
Hi, For my manager I need to write a script to extract the From: e-mail addresses from his e-mail account. Use reformail with -x: http://www.courier-mta.org/reformail.html Extracting headers The -x and -X options extract the indicated headers from the message, and print them to

Re: [Dovecot] [OT] dovecot appliance

2010-10-28 Thread Anton Dollmaier
Hi, Or does anyone knows a good webbased tool for dovecot. Actually, you may use Dovecot with any existing courier-Mailserver-GUI. E.g., there is Postfixadmin: http://postfixadmin.sourceforge.net/ You only have to setup Dovecot to use the SQL-schemes defined by the GUI, which is

Re: [Dovecot] trying to make cmusieve happen globally

2010-12-22 Thread Anton Dollmaier
Hi, plugin { sieve_global_path = /etc/dovecot/sieve-global.d/spam.sieve Use sieve_before, which is not documented in the wiki. Only this way the sievescript really gets executed. The global path requires a sieve script per home directory, including the global file. best

[Dovecot] Quota for Shared Folders

2009-04-14 Thread Anton Dollmaier
/information is needed, I'll happily provide them, if possible. best regards, Anton Dollmaier # 1.1.13: /etc/dovecot/dovecot.conf # OS: Linux 2.6.26-1-686 i686 Debian 5.0.1 log_timestamp: %Y-%m-%d %H:%M:%S protocols: imap imaps pop3s pop3 listen: *, [::] ssl_cert_file: /etc/dovecot/dovecot.pem

Re: [Dovecot] Quota for Shared Folders

2009-04-22 Thread Anton Dollmaier
Hi Timo, Actually virtual Dovecot quota completely ignores shared/public namespaces currently. The only reason why you seem to notice a combined quota is most likely because of filesystem quota limit exceeding. Or the local quota was exceeded too, so the mail was deferred anyway. So I

Re: [Dovecot] How do I get my mail from fetchmail into dovecot

2009-04-29 Thread Anton Dollmaier
I have dovecot (with squirrel mail etc.) running without any problems but cannot understand how to get e-mail from a pop server into dovecot. I have fetchmail configured to pick up the mail from the pop3 server but don't understand how to get it from there into my dovecot mbox configure

[Dovecot] deliver_log_format not working with 1.2.rc3?

2009-04-30 Thread Anton Dollmaier
Hi list, just a small issue with deliver_log_format. Although, the parameter is altered in the config and is correctly shown with dovecot -n, deliver uses only its default log_format. r...@terra:~# dovecot -n | grep -e deliver -e ^# # 1.2.rc3: /etc/dovecot/dovecot.conf # OS: Linux

Re: [Dovecot] Unexplainable problem with POP3 quotas

2009-04-30 Thread Anton Dollmaier
No, we don't. We use dovecot as POP/IMAP server, and let Postfix do the rest. How does Postfix deliver the mails? mailbox_command should be set to use deliver, not maildrop/procmail. I see, but it seems like it is *another* solution rather than a constraint. I just tested the

Re: [Dovecot] Testing POP3 with telnet - password always wrong

2009-05-05 Thread Anton Dollmaier
USER t...@192.168.10.171 Try only test, without domain. auth default: passdb: driver: pam userdb: driver: passwd set auth_debug=yes, then dovecot shows more details about the authentification-results in /var/log/mail.log (default on lenny). best regards, Anton

Re: [Dovecot] xi.rename-it.nl debian dovecot-1.2.1 ?

2009-07-10 Thread Anton Dollmaier
Hi, on my testserver , but it seems that this dont works since 1.2.rc8 ran into the same problem here. use aptitude, search for dovecot-common, press enter to get all versions listed, and install explicitly the 1.2.1-version. aptitude will complain about dependencies, so choose manually

[Dovecot] imap_quota-error with 1.2.1

2009-07-10 Thread Anton Dollmaier
Hi, I downloaded the debian-src-package of dovecot 1.2.1 from xi.rename-it.nl, and built the package myself - no errors present. after the upgrade, dovecot complains about an error with imap_quota, startup fails: Restarting IMAP/POP3 mail server:

Re: [Dovecot] imap_quota-error with 1.2.1

2009-07-11 Thread Anton Dollmaier
a) Use automake v1.10+ (the deb-src seems to force using 1.9) b) Apply patch: http://hg.dovecot.org/dovecot-1.2/rev/66040bffc1a5 Thanks to Timo and Stephan, it's working again. Best regards, Anton

Re: [Dovecot] popup to all users ?

2013-07-05 Thread Anton Dollmaier
a warning; the command can still complete successfully. The human-readable text describes the condition. Best regards, Anton -- ADIT Systems Anton Dollmaier, B.Sc. Im Moos 22 84323 Massing Telefon: +49-8724-3949990 (Mo-Sa, 10:00-20:00 Uhr, dt. Festnetz) Telefax: +49-8724-394

Re: [Dovecot] Dovecot replies with default SSL certificate instead of the vhost's

2013-09-16 Thread Anton Dollmaier
of *email* are worthless becasue you do not have different document roots Could be different mail document roots, e.g. a distinct user base with different backends for each hostname :) Best regards, Anton -- ADIT Systems Anton Dollmaier, M.Sc. Im Moos 22 84323 Massing Telefon: +49-8724

Re: [Dovecot] how to handle logging

2013-10-14 Thread Anton Dollmaier
techniques of MongoDB. Best, Anton -- ADIT Systems Anton Dollmaier, M.Sc. Im Moos 22 84323 Massing Telefon: +49-8724-3949990 (Mo-Sa, 10:00-20:00 Uhr, dt. Festnetz) Telefax: +49-8724-394 Umsatzsteuer-ID:DE221493781 Twitter:http://twitter.com/ADITSystems Blog: http

[Dovecot] issues with ACL and Public Namespaces

2009-10-06 Thread Anton Dollmaier
-files and lists the folders also in RoundCube's Folder-pane and Apple Mail finds the public folders too. Upgrading to 1.2.5 failed so far, as my build-server has problems with automake, have to look into this too. Thanks in advance! best regards, Anton Dollmaier Output of dovecot

Re: [Dovecot] issues with ACL and Public Namespaces

2009-10-06 Thread Anton Dollmaier
Hi Timo, Oh, right, that's because the subscriptions are in the private namespace. Hmm. I'll try to get this fixed soon, but if you want to get it working now you could use: namespace public { prefix = shared. location = maildir:/var/mail/vmail/%d/shared:CONTROL=~/shared:INDEX=~/shared

Re: [Dovecot] Unknown setting: driver

2009-10-19 Thread Anton Dollmaier
Hi, I followed the sql example included in the latest dovecot source, and put driver=mysql in dovecot.conf (outside any section) copy the sql-settings to an extra file (e.g. dovecot-sql.conf) and reference this file as passdb and/or userdb:

Re: [Dovecot] testing needed

2009-10-19 Thread Anton Dollmaier
Hi, Can someone find an OS where the attached program doesn't work? It should print success. So far tested for success: Linux 2.6, Solaris 10, FreeBSD 7.2, OpenBSD 4.2. Mac OS X Server 10.4 works (prints success). Darwin X91-186.local.lan 8.10.0 Darwin Kernel Version 8.10.0: Wed May 23

Re: [Dovecot] Public Folder Quotas

2009-10-27 Thread Anton Dollmaier
Hi folks, I suppose you mean something like: namespace public { prefix = Public/ .. } quota = .. quota2 = maildir:Public quota:ns=Public/ We have this running in exactly that way. This creates a separate shared quota for all mailboxes in Public/ namespace. I've no idea if it really

Re: [Dovecot] Public Folder Quotas

2009-10-29 Thread Anton Dollmaier
OK thanks just one last query, would the quota rule be something like this? quota_rule2 = Public*:storage=100M === namespace public { prefix = shared. separator = . (...) } dict { quotadict = mysql:/etc/dovecot/dovecot-dict-quota.conf expire =

Re: [Dovecot] deliver_log_format ignored

2009-11-05 Thread Anton Dollmaier
Hi, seems that LDA ignores deliver_log_format (still log with format: msgid=%m: %$) Is there some change from this http://www.dovecot.org/list/dovecot/2009-April/039013.html or http://www.dovecot.org/list/dovecot/2009-May/039269.html ? I still have this problem, but also new information:

Re: [Dovecot] deliver_log_format ignored

2009-11-05 Thread Anton Dollmaier
Hm, works for me. How do you invoke deliver? (in Postfix's master.cf) As I have the same problem: dovecot unix - n n - - pipe flags=DRhu user=vmail:vmail argv=/usr/lib/dovecot/deliver -s -d $(recipient) main.cf: virtual_transport = dovecot

Re: [Dovecot] Web-Interface for Dovecot-Sieve?

2009-11-17 Thread Anton Dollmaier
Hi, is there anywhere a web-interface for managing sieve-filters with dovecot? RoundCube in version 0.3 has a managesieve-Plugin, works great - but due to formatting/parsing I would recommend using only RC, and no manual changes. Best regards, Anton

Re: [Dovecot] Web-Interface for Dovecot-Sieve?

2009-11-17 Thread Anton Dollmaier
I've been considering switching to RC for our webmail... do you know if the RC managesieve plugin and the TBird sieve extension co-exist peacefully? Partly: RoundCube tries parsing the Sieve-Rules in a certain scheme, if parsing fails (e.g. by editing in ThunderBird and not following the

Re: [Dovecot] Web-Interface for Dovecot-Sieve?

2009-11-17 Thread Anton Dollmaier
Hi, Someone please correct me if I'm wrong, but IIRC the managesieve interfaces of Roundcube and Thunderbird only allow you to choose between existing sieve scripts that are already available through the managesieve server. They *don't* provide an interface for constructing sieve scripts in the

Re: [Dovecot] quota in SQL and static userdb

2009-11-23 Thread Anton Dollmaier
Probably with sql dict too, but I can't remember right now how exactly. This works for us: dict { quotadict = mysql:/etc/dovecot/dovecot-dict-quota.conf } plugin { quota = dict:INBOX::proxy::quotadict quota2 = dict:shared:%d:ns=shared.:proxy::quotadict } in the mysql-table, username and

[Dovecot] Panic: file maildir-uidlist.c: line 1242 (maildir_uidlist_records_drop_expunges): assertion failed

2009-12-23 Thread Anton Dollmaier
autocreate3: INBOX.Sent autosubscribe: INBOX.Trash autosubscribe2: INBOX.Spam autosubscribe3: INBOX.Sent Best regards merry christmas! Anton Dollmaier

Re: [Dovecot] Same filenames on different servers?

2010-01-11 Thread Anton Dollmaier
Hi, The idea was to have two identical (well, nearly identical) servers with the same software and data on them, and while the first do its job as SMTP and POP3/IMAP4 server, the second server just get copy of first's current state (that is, copy user db and mail spool). In case of something

Re: [Dovecot] failed to stat user's sieve script

2010-01-28 Thread Anton Dollmaier
Hi, Jan 28 13:26:15 deliver(root): Error: chdir(/root) failed: Permission denied dovecot cannot store mails to /root, use an alias in your MTA to redirect mails to another user. best regards, Anton

Re: [Dovecot] enabling IMAP SORT and THREAD extensions

2010-02-21 Thread Anton Dollmaier
If telnet into Dovecot on my server, it doesn't explicitly indicate SORT and THREAD capabilities: You did not issue the 1 capability-command. If you do so, you will get this (or similar): r...@terra:~# telnet localhost 143 Trying 127.0.0.1... Connected to localhost. Escape character is

Re: [Dovecot] Maildir archive utility for historical filing

2010-04-07 Thread Anton Dollmaier
Hi, Is there any utility to archive maildir folders based on message date? I found cleanup-maildir, but you have to supply the directory as parameter. http://archivemail.sourceforge.net/

Re: [Dovecot] Quota monitoring

2010-04-21 Thread Anton Dollmaier
Hi, Acutally I can log in with user password to get the users quota but wat I need is a way to monitor the quota of every user with e.g an admin user which would have an acces to the quota of each mailbox. Which quotas do you use? With Maildir and SQL-userdb you can save the

Re: [Dovecot] Quota monitoring

2010-04-21 Thread Anton Dollmaier
Hi, Could you post configuration details ? Configured as described in dovecot-wiki: http://wiki.dovecot.org/Quota/Dict http://wiki.dovecot.org/Quota/1.1 Quota-information is then directly SELECTable from the table quota. Best regards, Anton

Re: [Dovecot] problems implementing dovecot LDA with Postfix

2010-05-09 Thread Anton Dollmaier
: protocol lda { postmaster_address = postmas...@hardwarefreak.com } best regards, Anton -- ADIT Systems Anton Dollmaier, B.Sc. Im Moos 22 84323 Massing Telefon: +49-700-46862348* (Mo-Sa, 10:00-20:00 Uhr) Telefax: +49-700-32922348* Twitter: http://twitter.com/ADITSystems Blog:http

Re: Android Sync Doesn't Work Too Good

2014-07-02 Thread Anton Dollmaier
/details?id=com.kaitenmail.adsupported The paid version is ad free: https://play.google.com/store/apps/details?id=com.kaitenmail Best, Anton -- ADITSYSTEMS Anton Dollmaier, M.Sc. Im Moos 22 84323 Massing Telefon: +49-8724-3949990 (Mo-Fr, 10:00-18:00 Uhr, dt. Festnetz) Telefax: +49-8724

Submission / Postfix / XCLIENT

2018-10-09 Thread Anton Dollmaier
Hi all, while testing the new Dovecot Submission Proxy feature, which we greatly appreciate and have been anticipating for a long time, some issues occured. Dovecot is unable to submit mails via XCLIENT: < XCLIENT ADDR=185.115.176.12PORT=39074 > 501 5.5.4 Bad ADDR syntax:

Re: Messages sent to alias+detail end up in INBOX

2021-02-17 Thread Anton Dollmaier
Hi Denis, I expected that when I send a message to alias+det...@mydomain.tld, it would go into the "detail" folder of u...@mydomain.tld. However, it goes into the INBOX folder of u...@mydomain.tld. Is it the intended behavior? It is. To achieve the desired folder, you need a sieve

Re: Mail account brute force / harassment

2019-04-11 Thread Anton Dollmaier via dovecot
On 11.04.2019 13:25, James via dovecot wrote: On 11/04/2019 11:43, Marc Roos via dovecot wrote: A. With the fail2ban solution    - you 'solve' that the current ip is not able to access you It is only a solution if there are subsequent attempts from the same address.  I currently have