Plugin to cleanup/remove unused user defined keywords(IMAP PERMANENTFLAGS) possible ?

2023-10-03 Thread sergey
not allowed" keyword sent via the +FLAGS / +FLAGS.SILENT commands Any helpful plugin example or code references would be greatly appreciated. Thank you very much, Sergey Mosin ___ dovecot mailing list -- dovecot@dovecot.org To unsubscribe send an email to dovecot-le...@dovecot.org

Re: How to grant user access to his .dovecot.sieve.log?

2018-02-08 Thread Sergey Ivanov
.dovecot.sieve.log === Sure for this to work in production I will put "AuthBasicProvider ldap" and authenticate against the same LDAP server as dovecot uses. And I think I should place these sieve files into separate from mail directory like '/srv/sieve/', so that apache won&

Re: How to grant user access to his .dovecot.sieve.log?

2018-02-06 Thread Sergey Ivanov
ript is called, but will check if it is true. Then using sieve "notify" action with mailto: ${user_mailaddress}?body=${log_content}" -- Sergey. On Thu, Feb 1, 2018 at 5:01 PM, Sergey Ivanov wrote: > Hi, > What are the recommended ways to give access to their .dovecot.sieve

Re: How to grant user access to his .dovecot.sieve.log?

2018-02-03 Thread Sergey Ivanov
r each sievec run. -- Regards, Sergey. On Fri, Feb 2, 2018 at 7:23 PM, A. Schulze wrote: > > > Am 01.02.2018 um 18:01 schrieb Sergey Ivanov: > > Hi, > > What are the recommended ways to give access to their .dovecot.sieve.log > messages to the users? > > I am

Re: How to grant user access to his .dovecot.sieve.log?

2018-02-03 Thread Sergey Ivanov
o say what is wrong to the author of the Sieve script. -- Sergey. On Fri, Feb 2, 2018 at 2:29 PM, Gabriel Kaufmann wrote: > Alternatively use a web-interface with read-only access to the log? > > best regards > > Gabriel Kaufmann > >

How to grant user access to his .dovecot.sieve.log?

2018-02-01 Thread Sergey Ivanov
Hi, What are the recommended ways to give access to their .dovecot.sieve.log messages to the users? I am thinking about placing this file into users Maildir/new, or piping to dovecot-lda. -- Regards, Sergey Ivanov signature.asc Description: OpenPGP digital signature

Re: antispam plugin pipe backend error when moving multiple emails

2017-02-12 Thread Sergey Urushkin
Hello, wondering why it's still an issue with current git, while this old working solution exists (tested with dovecot 2.22 and rspamd 1.4) : https://www.dovecot.org/list/dovecot/2013-November/093810.html --- Best regards, Sergey Urushkin Stéphane Cottin писал 2016-04-18 15:44: Hello,

Re: dovecot, fts, solr5 patch, fuzzy search

2015-09-27 Thread Sergey Urushkin
27 сентября 2015 г. 20:38:27 GMT+03:00, Sergey Urushkin пишет: >Hi! >I have a patch and several thoughts about FTS in dovecot. > >I. SOLR v5.1 and above doesn't allow GET /select queries with >Content-Type header set, so, I just removed it from the code: > >--- dove

dovecot, fts, solr5 patch, fuzzy search

2015-09-27 Thread Sergey Urushkin
t/ url_fuzzy=http://127.0.0.1:8983/solr/dovecot_fuzzy/ This method will allow to have two completely different indexes. And according to RFC 6203 search query generally may be mixed (FUZZY/EXACT). Both options will be useful in different setups. Hope, these thoughts will help. -- Best regards, Sergey Urushkin

Assertion failed in sql_transaction_commit with pgsql driver

2014-09-03 Thread Potapov Sergey
Hi! Next code from driver_pgsql_transaction_commit cause assertion failed in do_query function - i_assert(SQL_DB_IS_READY(&db->api)) } else { /* multiple queries, use a transaction */ ctx->refcount++; sql_query(_ctx->db, "BEGIN", transaction_begin_callback, ctx);

Maybe error in login-common/login-proxy.c/proxy_client_input

2014-07-23 Thread Potapov Sergey
Hi! It seems that o_stream_cork should be done on proxy->server_output but not on proxy->client_output. o_stream_cork(proxy->client_output); ret2 = o_stream_send(proxy->server_output, buf, ret); o_stream_uncork(proxy->server_output);

Dovecot 2.2.13+ Assertion failed in sync_expunge_range

2014-07-16 Thread Potapov Sergey
Hi! I got this error when build dovecot from source (rev 17627), configure it as imapc proxy (http://wiki2.dovecot.org/HowTo/ImapcProxy) and run imaptest with clients=2 or more, on latest stable version (2.2.13) and with clients=1 this error does not occurred. Jul 16 17:22:26 imap(user771): Pa

Dovecot 2.2.13 Assertion failed in mailbox_list_create

2014-07-16 Thread Potapov Sergey
Hi I got this error when configured imapc proxy (http://wiki2.dovecot.org/HowTo/ImapcProxy) and moved indexes to memory (mail_location = imapc:~/imapc:INDEX=MEMORY), with indexes on disk this error does not occurred. Jul 16 17:06:31 imap-login: Info: Login: user=, method=PLAIN, rip=127.0.0.1,

[Dovecot] Possible error in function mailbox_autocreate

2014-02-18 Thread Potapov Sergey
Hi! in mailbox_autocreate: if (mailbox_create(box, NULL, FALSE) < 0) { errstr = mailbox_get_last_error(box, &error); if (error != MAIL_ERROR_NOTFOUND) { <<< May be MAIL_ERROR_EXISTS should be here? mail_storage_set_critical(box->storage,

[Dovecot] auth_default_realm, pam_krb5, gssapi

2014-01-20 Thread Sergey Urushkin
wercase realm): dovecot: auth: gssapi(us...@realm.com,172.16.0.1,): User not authorized to log in as us...@realm.com As I know kerberos usernames are case insensitive (user part), at least kinit and windows against AD works that way. Seems that k5credentials passdb extra field will not help h

[Dovecot] Error in imap_address_arg_append

2013-12-03 Thread Potapov Sergey
Hi Function imap_envelope_parse return incorrect result for addresses with groups due to error in imap_address_arg_append because of with ", " is added after group name and before first mailbox. Patch for dovecot v2.1 in attach. imap-envelope.patch Description: imap-envelope.patch

[Dovecot] dovecot-metadata-plugin v14 patches

2013-07-15 Thread Sergey Sidlyarenko
Please apply patches for dovecot-metadata-plugin v14. 1. dovecot-metadata-plugin-value_nil - fix plugin crach if entry->value == NULL (strlen(NULL) - segfault). 2. dovecot-metadata-plugin-utf7_support - add support metadata for UTF8 mailfolder. -- Sidlyarenko Sergey https://github.

[Dovecot] Dovecot 2.2.4 metadata-plugin not support UTF7

2013-07-13 Thread Sergey Sidlyarenko
event") [13-Jul-2013 19:15:36 +0400]: [F537] S: * METADATA "New7" ("/shared/vendor/kolab/folder-type" "event") [13-Jul-2013 19:15:36 +0400]: [F537] S: * METADATA "Addressbook" ("/private/vendor/kolab/folder-type" "contact.default") [13-Jul-2013 19:15:36 +0400]: [F537] S: * METADATA "Addressbook" ("/shared/vendor/kolab/folder-type" "contact") [13-Jul-2013 19:15:36 +0400]: [F537] S: A0008 OK Completed. [13-Jul-2013 19:15:36 +0400]: [F537] C: A0009 DELETE &BB0EPgQyBEsEOQ-8 [13-Jul-2013 19:15:36 +0400]: [F537] S: A0009 OK Delete completed. [13-Jul-2013 19:15:36 +0400]: [F537] C: A0010 UNSUBSCRIBE &BB0EPgQyBEsEOQ-8 [13-Jul-2013 19:15:36 +0400]: [F537] S: A0010 OK Unsubscribe completed. [13-Jul-2013 19:15:36 +0400]: [F537] C: A0011 LOGOUT [13-Jul-2013 19:15:36 +0400]: [F537] S: * BYE Logging out [13-Jul-2013 19:15:36 +0400]: [F537] S: A0011 OK Logout completed. -- Sidlyarenko Sergey https://github.com/lefoyer

[Dovecot] Dovecot 2.2.4 metadata-plugin crached

2013-07-13 Thread Sergey Sidlyarenko
e process_limit = 2048 process_min_avail = 10 service_count = 0 vsz_limit = 1 G } ssl_cert = mail_plugins = expire virtual metadata imap_metadata imap_annotatemore } protocol lda { hostname = mail.example.ru info_log_path = /var/log/dovecot/dovecot-local-deliver.log log_path = /var/log/dovecot/dovecot-local-deliver-errors.log mail_plugins = expire sieve virtual postmaster_address = ad...@example.ru } protocol sieve { managesieve_max_line_length = 65536 } -- Sidlyarenko Sergey https://github.com/lefoyer

[Dovecot] Dovecot METADATA plugin configuration

2013-07-02 Thread Sergey Sidlyarenko
Debian Wheezy dovecot 2.2.4 (deb http://xi.rename-it.nl/debian/ stable-auto/dovecot-2.2.patched main) dovecot-metadata-plugin v14 /var/lib/dovecot 777 dovecot:dovecot /var/lib/dovecot/shared-metadata 700 dovecot:dovecot /var/run/dovecot 777 dovecot:dovecot /var/r

[Dovecot] Path for fixing sequence lookup of newly created mails in transaction view

2012-12-19 Thread Potapov Sergey
Hi! It seem that tview_lookup_seq_range works incorret, if I request uids from 3 to 3, and I have new uids 1,2,4,5 it will return seq for uid=4. Fixing patch is included as attach. -- Sergey Potapov # HG changeset patch # User lion@ubuntu.ubuntu-domain # Date 1354855835 -14400 # Node ID

Re: [Dovecot] Problem use localized prefix in namespace

2012-08-25 Thread (Dovecot) Sergey Sidlyarenko
Thank you, it works. Timo Sirainen писал 2012-08-23 23:57: On 17.8.2012, at 21.37, (Dovecot) Sergey Sidlyarenko wrote: Problem with localized prefix in namespace. Fixed: http://hg.dovecot.org/dovecot-2.1/rev/ade94fde249e -- Best regards, Sidlyarenko Sergey Aleksandrovish

[Dovecot] Problem use localized prefix in namespace

2012-08-17 Thread (Dovecot) Sergey Sidlyarenko
/lib/dovecot/libdovecot.so.0(io_loop_handler_run+0xa7) [0x7f8d6bcd3ca7] -> /usr/lib/dovecot/libdovecot.so.0(io_loop_run+0x28) [0x7f8d6bcd2a08] -> /usr/lib/dovecot/libdovecot.so.0(master_service_run+0x13) [0x7f8d6bcbf483] -> dovecot/imap(main+0x285) [0x409265] -> /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfd) [0x7f8d6b919ead] -> dovecot/imap() [0x4093d5] 2012-08-17 22:19:17 imap(ad...@lefoyer.ru): Fatal: master: service(imap): child 20040 killed with signal 6 (core dumps disabled) -- Best regards, Sidlyarenko Sergey Aleksandrovish +7(495)509-42-07 tresh_dove...@lefoyer.rumailto:tresh_dove...@lefoyer.ru

Re: [Dovecot] IMAP IDLE - iPhone?

2012-08-10 Thread Sergey S. Kovalev
10.08.2012 16:57, Reindl Harald пишет: surely IT IS an argument on a non-iPhone you can chosse what is important your agrumentation is even one argument more against iPhone If we now talking about android vs iPhone now... Imagine Android default email client. It have no many features, that iPho

Re: [Dovecot] IMAP IDLE - iPhone?

2012-08-10 Thread Sergey S. Kovalev
10.08.2012 16:25, Timo Sirainen пишет: how does help me "save battery" if i have a folder-structure maintained by sieve if i do not get my new mails? If you open 10 connections to IMAP server and will IDLE on them - your phone will wake up to reply for ping in every of that 10 connections. Imag

Re: [Dovecot] IMAP IDLE - iPhone?

2012-08-10 Thread Sergey S. Kovalev
10.08.2012 15:59, Reindl Harald пишет: Am 10.08.2012 10:46, schrieb Sergey S. Kovalev: 10.08.2012 15:16, Reindl Harald пишет: i have a Android with K9, a lot of folders where messages are stored by sieve-scirpts and on my phone i can actively select which folders should be used for push Sure

Re: [Dovecot] IMAP IDLE - iPhone?

2012-08-10 Thread Sergey S. Kovalev
10.08.2012 15:16, Reindl Harald пишет: Am 10.08.2012 09:08, schrieb Sergey S. Kovalev: iPhone will not notify for new mail in any folder, except INBOX - it's IMAP limitation. IMAP IDLE monitor only one selected folder. If you need notifying of new mail in copule of mail folders you shold

Re: [Dovecot] IMAP IDLE - iPhone?

2012-08-10 Thread Sergey S. Kovalev
ion. IMAP IDLE monitor only one selected folder. If you need notifying of new mail in copule of mail folders you shold look for ActiveSync realization. On small mailboxes it's z-push and tine20 for example - they can use IMAP server as backend. Sergey S. Kovalev

Re: [Dovecot] GSSAPI and deny=yes passdb

2011-10-27 Thread Sergey Urushkin
Noone has an idea? # dovecot --version 2.0.15 04.10.2011 13:01, Sergey Urushkin пишет: Hi. Is it possible to use GSSAPI authentication and deny passdb together? Seems it doesn't work as I expect: GSSAPI doesn't check deny passdb, so I'm not able to restrict access

[Dovecot] GSSAPI and deny=yes passdb

2011-10-04 Thread Sergey Urushkin
without domain part (auth_default_realm doesnt work with pam) I know that in my case I can just exclude denied users from .passwd-ldap file, and even use .passwd-deny as filter file:) But problem exists and should be solved, I think. Thanks. -- Best regards, Sergey Urushkin

Re: [Dovecot] Exim and Dovecot2 SASL: 435 Unable to authenticate at present

2011-07-04 Thread Sergey Urushkin
On Mon, 4 Jul 2011 12:38:01 +0200, Andraž 'ruskie' Levstik wrote: :2011-06-28T21:38:Sergey Urushkin: Hi. I had working Exim 4.71 and Dovecot 1.2.9 SASL configuration on Ubuntu Lucid, but needed some features from dovecot2, so I installed 2.0.13 from https://launchpad.net/~carsten-

[Dovecot] Exim and Dovecot2 SASL: 435 Unable to authenticate at present

2011-06-28 Thread Sergey Urushkin
279 SMTP>> 221 mail.domain.lan closing connection 29279 tls_do_write(7f10202175a0, 37) 29279 gnutls_record_send(SSL, 7f10202175a0, 37) 29279 outbytes=37 29279 tls_close(): shutting down TLS 29279 LOG: smtp_connection MAIN 29279 SMTP connection from (mail.domain.lan) [127.0.0.1] I=[127.0.0.1]:465 closed by QUIT 29279 search_tidyup called 29270 child 29279 ended: status=0x0 29270 0 SMTP accept processes now running 29270 Listening... -- Best regards, Sergey Urushkin

Re: [Dovecot] Global fields for passwd-file database

2011-05-22 Thread Sergey Urushkin
xtra_fields_overrides = home=/home/%u > } > > And the same for userdb. Although I don't really like those setting names. > Wonder if there are some better ones. Nothing bad with these names. It's clear even without comments. Thanks. -- Best regards, Sergey Urushkin

Re: [Dovecot] Global fields for passwd-file database

2011-05-21 Thread Sergey Urushkin
And no hope it'll be implemented ever? -- Best regards, Sergey Urushkin Timo Sirainen wrote: On Fri, 2011-05-20 at 09:37 +0400, Sergey Urushkin wrote: > Is there a way to specify global fields for passwd-file DB? No.

[Dovecot] Global fields for passwd-file database

2011-05-19 Thread Sergey Urushkin
%d } userdb passwd-file { args = username_format=%n home=/var/mail/%d/%n /etc/dovecot/dovecot.passwd.%d } -- Best regards, Sergey Urushkin

Re: [Dovecot] Dovecot Sieve with Dovecot 2.0

2010-08-03 Thread Roman Sergey
Thank you, Stephan! I assume it doesn't have major bugs opened, correct? On Tue, Aug 3, 2010 at 10:34 AM, Stephan Bosch wrote: > Op 3-8-2010 12:21, Roman Sergey schreef: > > Hello Timo and everybody! >> >> Sorry, I was googling but haven't found an answer on

[Dovecot] Dovecot Sieve with Dovecot 2.0

2010-08-03 Thread Roman Sergey
Hello Timo and everybody! Sorry, I was googling but haven't found an answer on my simple question: Does the latest release of Dovecot Sieve work with Dovecot 2.0rc? Thank you in advance. -- Best regards, Roman

[Dovecot] Sieve, vacation, variables and russian language

2009-09-11 Thread Sergey Grigorian
Folks, I'm using a Sieve script for vacation messages and there's something strange with it in certain cases. The script uses the "variables" extension to produce the "Re: [original subject] (autoreply)" subject line for the vacation message. All is well except for cases when that [original sub

Re: [Dovecot] First release (v0.1.0) of the new Sieve implementation for Dovecot v1.2

2008-10-29 Thread sergey ivanov
Hi Stephan, I've tried dovecot-sieve cmusieve with at the same place. As I can see, both problems I've though to be in libsieve, actually are that of dovecot. Both plugins do not expand variables like %n, %h, %u. But just filename works, - if I've set --- sieve = sievescript --- then both have used

Re: [Dovecot] First release (v0.1.0) of the new Sieve implementation for Dovecot v1.2

2008-10-29 Thread sergey ivanov
should test cmusieve before reporting these as libsieve bugs, I'm sorry. -- WBR, Sergey. On Wed, Oct 29, 2008 at 3:31 PM, Stephan Bosch <[EMAIL PROTECTED]> wrote: > sergey ivanov schreef: >> >> Hi Stephan, >> Thank you for quick fix. I've built it (from chan

Re: [Dovecot] Problem: delivery with mode 600 into shared folder

2008-07-23 Thread Sergey Ivanov
d at Thunderbird restart, but after restart all messages in shared folder appear as new. Even without restart, when go to another folder and then return to one where I've marked messages as "Read" before, they are new! Dovecot configs are in my previous message, I think I should not post them once more. -- Sergey Ivanov.

Re: [Dovecot] "select NULL as password..." failing after upgrade to dovecot-1.1

2008-07-01 Thread Sergey Ivanov
Timo Sirainen wrote: On Jul 2, 2008, at 12:26 AM, Sergey Ivanov wrote: Hi, I've upgraded mail server to dovecot-1.1, on solaris-10 with mysql user database. I used sql query "SELECT NULL as password, login as user, concat('/mail/var/dovecot/',login) AS userdb_home, 501

[Dovecot] "select NULL as password..." failing after upgrade to dovecot-1.1

2008-07-01 Thread Sergey Ivanov
AND password=old_password('%w')" with dovecot-1.0.15 and it worked perfectly. But since upgrade the server can not authenticate any users, complaining in info_log: "Empty password returned without no_password". How to set up such things in dovecot-1.1? Is it possible? -- Sergey Ivanov.

Re: [Dovecot] FETCH for mailbox INBOX UID 39641 got too little data: 4823 vs 4825

2007-12-28 Thread Sergey Ivanov
Timo Sirainen wrote: With these changes I can't break it anymore: http://hg.dovecot.org/dovecot-1.0/rev/0713de760c5f http://hg.dovecot.org/dovecot-1.0/rev/fc5f6bbbf4c0 http://hg.dovecot.org/dovecot-1.0/rev/0a4f86976f50 Yes, thanks Timo, it seems to be fixed! -- Sergey Ivanov.

Re: [Dovecot] FETCH for mailbox INBOX UID 39641 got too little data: 4823 vs 4825

2007-12-27 Thread sergey ivanov
oo litt' /var/log/maillog | sed 's/.*got too little data: //' | sort -u -n 1688 vs 1693 4427 vs 4430 4552 vs 4558 5119 vs 5120 8567 vs 8570 9527 vs 9543 54605 vs 54608 --- -- Sergey Ivanov.

Re: [Dovecot] Zimbra benchmarking

2007-11-30 Thread sergey ivanov
Hi, for me zimbra swapped a lot on 1G of RAM even while serving mailboxes for 3 users. But on 2G it runs such that I can't feel it's slower than previously worked there dovecot. -- Sergey. Timo Sirainen wrote: > Now that I have a working kvm setup, I thought I'd finall

[Dovecot] imaptest.c

2007-10-30 Thread sergey ivanov
Timo, can you, please, update imaptest.c to be compatible with recent 1.1 beta5 dovecot sources? -- WBR, Sergey Ivanov.

Re: [Dovecot] more problems with dovecot-1.1 beta3

2007-10-21 Thread sergey ivanov
sergey ivanov wrote: > Timo Sirainen wrote: > >> On 21.10.2007, at 11.35, sergey ivanov wrote: >> >> >>> dovecot: Oct 21 04:00:30 Error: IMAP(seriv): posix_fallocate() failed: >>> Invalid argument >>> >> I guess this happen

Re: [Dovecot] more problems with dovecot-1.1 beta3

2007-10-21 Thread sergey ivanov
Timo Sirainen wrote: > On 21.10.2007, at 11.35, sergey ivanov wrote: > >> dovecot: Oct 21 04:00:30 Error: IMAP(seriv): posix_fallocate() failed: >> Invalid argument > > I guess this happens if Solaris libc has posix_fallocate() but the > kernel doesn't suppor

Re: [Dovecot] more problems with dovecot-1.1 beta3

2007-10-21 Thread sergey ivanov
Hi Timo, thanks for explaining how amount of the file descriptor may be counted. Timo Sirainen wrote: > On Thu, 2007-10-18 at 15:16 -0400, Sergey wrote: > >> Thank you for pointing me about -xc99 flag, I have compiled and >> installed dovecot inplace of version 1.0.5 w

[Dovecot] more problems with dovecot-1.1 beta3

2007-10-18 Thread Sergey
r/run/dovecot/auth-master mode: 384 user: vmail group: vmail bash-3.00# grep login_max /opt/dovecot/etc/dovecot.conf login_max_processes_count = 128 # 16 + login_max_connections * 2 available file descriptors. login_max_connections = 120 bash-3.00# grep max_mail /opt/dovecot/etc/dovecot.conf max_mail_processes = 128 --- So I reverted to 1.0.5 which works fine for me. -- WBR, Sergey Ivanov.

Re: [Dovecot] Released v1.1.beta3

2007-10-16 Thread Sergey
336: #error: "Compiler or options invalid; UNIX 03 and POSIX.1-2001 applications require the use of c99" cc: acomp failed for file-set-size.c *** Error code 2 --- Am I missing some library? -- WBR, Sergey Ivanov. Timo Sirainen wrote: > http://dovecot.org/releases/1.

Re: [Dovecot] dovecot-1.1 + dovecot-sieve-1.1 deliver backtraces

2007-08-13 Thread Sergey
t11/auth-master } -- WBR, Sergey Ivanov

Re: [Dovecot] v1.1.alpha3 released

2007-08-13 Thread Sergey
errors after almost 24h of > stress testing. [skip] How to compile now imaptest? May be, it's worth while moving this tool to src/util? -- Sergey Ivanov.

Re: [Dovecot] dovecot + LDAP-SASL ?

2007-08-06 Thread Sergey A. Kobzar
itself and stores the > plaintext secret on LDAP. > But it is also possible to have the LDAP do the SASL work and dovecot just > pass SASL messages through? Even when the LDAP server uses a proprietary > SASL method not supported by dovecot? > regards > Hadmut -- Sergey

Re: [Dovecot] dovecot-1.0.3 & apacheds ldap

2007-08-06 Thread sergey ivanov
Timo Sirainen wrote: > On Fri, 2007-08-03 at 08:22 -0400, sergey ivanov wrote: > >> dovecot: Aug 03 08:07:10 Info: auth(default): ldap(seriv,127.0.0.1): >> pass search: base=ou=people,dc=parkheights,dc=dyndns,dc=org >> scope=subtree filter=(&(objectClass=posixAccoun

[Dovecot] dovecot-1.0.3 & apacheds ldap

2007-08-03 Thread sergey ivanov
I have problem with dovecot-1.0.3 and apacheds ldap server. If I change just uris in dovecot-ldap.conf to point to fedora-ds server, everything works O.K. I've tried with apacheds ldap server versions 1.0.2 and 1.5.0 command line search with parameters taken from dovecot.debug log gives me all need

Re: [Dovecot] Outlook 2000/2003 frequent disconnect issue

2007-07-31 Thread Sergey A. Kobzar
nutes, and I have disabled SELinux. > None of this seems to have worked. > Is there anyone out there who has actually had this issue and > resolved it? Can you please help? > Thanks, > Jeff Ramsey > MIS Administrator > TMI Forest Products, Inc. > [EMAIL PROTECTED] > 360.477.0738 -- Sergey

Re: [Dovecot] Dovecot LDAP schema?

2007-07-30 Thread Sergey A. Kobzar
Hi Hadmut, Monday, July 30, 2007, 11:27:37 AM, you wrote: > Hi Sergey, > Sergey A. Kobzar wrote: >> >> You can use standard LDAP attributes. It's more than enough. > Well, I know that it works with standard LDAP attributes, that's what I > do right now

Re: [Dovecot] Dovecot LDAP schema?

2007-07-28 Thread Sergey A. Kobzar
account objectclass to avoid confusion > and accidently giving access to accounts.) > regards > Hadmut -- Sergey

Re: [Dovecot] Shared mailboxes (maildir, symlinks) and permissions

2007-07-28 Thread Sergey A. Kobzar
rong here. > So I am not sure what I am missing, or if what I want to do is at all possible > (without taking out the sledgehammer and setting all permissions to 0777). I > also apologise for this lengthy post with many details and little interesting > questions. It's getting late and I fear I've reached a dead end. > I'd really appreciate it if someone knowledgeable could point me in the right > direction here. > Thanks in advance! > Andreas > [1] http://wiki.dovecot.org/SharedMailboxes -- Sergey

Re: [Dovecot] dovecot-1.1 + dovecot-sieve-1.1 deliver backtraces

2007-07-27 Thread Sergey
Sergey wrote: > Sergey wrote: [skip] > I have added line "mail_drop_priv_before_exec: yes" to dovecot11.conf, > and verified that userdb, both static and from passwd file, returns user > homes, and these homes are owned by user vmail specified in > /etc/postfix/master.cf

Re: [Dovecot] dovecot-1.1 + dovecot-sieve-1.1 deliver backtraces

2007-07-26 Thread Sergey
Sergey wrote: > Timo Sirainen wrote: >> On 25.7.2007, at 17.18, Sergey wrote: >> >>> dovecot: Jul 25 01:05:19 Error: IMAP(seriv): Corrupted index cache file >>> /var/spool/imap/seriv/.imap/.community-lists-altlinux-org/dovecot.index.cache: >>> &

Re: [Dovecot] dovecot-1.1 + dovecot-sieve-1.1 deliver backtraces

2007-07-25 Thread Sergey
Timo Sirainen wrote: > On 25.7.2007, at 17.18, Sergey wrote: > >> dovecot: Jul 25 01:05:19 Error: IMAP(seriv): Corrupted index cache file >> /var/spool/imap/seriv/.imap/.community-lists-altlinux-org/dovecot.index.cache: >> >> Corrupted cach >> ed message_part d

[Dovecot] dovecot-1.1 + dovecot-sieve-1.1 deliver backtraces

2007-07-25 Thread Sergey
0x41505e] -> /lib64/li bc.so.6(__libc_start_main+0xf4) [0x2aee5c14] -> /usr/lib64/dovecot11/deliver [0x413739] dovecot: Jul 25 06:52:21 Error: IMAP(seriv): Corrupted index cache file /var/spool/imap/seriv/.imap/.sisyphus-lists-altlinux-org/dovecot.index.cache: Corrupted cache d message_

Re: [Dovecot] Can't connect to auth server at default: Resource temporarily unavailable

2007-07-24 Thread Sergey A. Kobzar
. > Perhaps a race condition? Sorry, I can't help you with SASL. Maybe somebody can... -- Sergey

Re: [Dovecot] Can't connect to auth server at default: Resource temporarily unavailable

2007-07-24 Thread Sergey A. Kobzar
ing this file when posting to the Dovecot mailing list. >> Which service do you use to authenticate users? > saslauthd from cyrus Sorry, I don't use it, but I think the problem is there. -- Sergey

Re: [Dovecot] Can't connect to auth server at default: Resource temporarily unavailable

2007-07-24 Thread Sergey A. Kobzar
e more useful. Which service do you use to authenticate users? > Thanks. -- Sergey

Re: [Dovecot] Shared folder

2007-07-24 Thread Sergey A. Kobzar
Hi Timo, Friday, July 20, 2007, 2:04:37 PM, you wrote: > On Fri, 2007-07-20 at 13:58 +0300, Sergey A. Kobzar wrote: >> No output from strace: >> >> # strace -tt -o log -p 9883 >> Process 9883 attached - interrupt to quit >> Process 9883 detached >> #

Re: [Dovecot] Shared folder

2007-07-20 Thread Sergey A. Kobzar
Hi Charles, Friday, July 20, 2007, 2:47:49 PM, you wrote: > On 7/20/2007, Sergey A. Kobzar ([EMAIL PROTECTED]) wrote: >> # ls -alh /home/mail/public/ >> total 4.0K >> drwxrwx--- 7 mail mail 232 Jul 20 09:53 . >> drwxr-x--- 4 mail root 104 Jul 19 09:54 .. > Shoul

Re: [Dovecot] Shared folder

2007-07-20 Thread Sergey A. Kobzar
Hi Timo, Friday, July 20, 2007, 1:32:37 PM, you wrote: > On Fri, 2007-07-20 at 13:04 +0300, Sergey A. Kobzar wrote: >> * copy 1 Public/Spam >> >> ... and no answer. > What does strace show for the imap process for this copy command? > http://wiki.dovecot.org/Debugg

Re: [Dovecot] Shared folder

2007-07-20 Thread Sergey A. Kobzar
Hi Timo, Friday, July 20, 2007, 12:40:59 PM, you wrote: > On Fri, 2007-07-20 at 12:20 +0300, Sergey A. Kobzar wrote: >> Well, now I can see Spam and Harm folders bat can't move messages from >> Inbox into Spam folder for example. MUA just freezes. Nothing in >> logs (m

Re: [Dovecot] Shared folder

2007-07-20 Thread Sergey A. Kobzar
.Spam drwxrw 2 mail mail 48 Jul 20 09:35 cur -rw-rw 1 mail mail 0 Jul 19 09:55 dovecot-shared drwx-- 2 mail mail 48 Jul 20 09:52 new -rw--- 1 mail mail 10 Jul 20 09:53 subscriptions drwx-- 2 mail mail 48 Jul 20 09:52 tmp -- Sergey

Re: [Dovecot] Shared folder

2007-07-19 Thread Sergey A. Kobzar
Configuration: Account: [EMAIL PROTECTED] Server: mail.domain.com User name: [EMAIL PROTECTED] Protocol: IMAP Port: 993 Secure(SSL): 1 Code: 800cccd2 What's wrong? Thursday, July 19, 2007, 10:57:47 AM, you wrote: > On Thu, 2007-07-19 at 10:54 +0300, Sergey A. Kobzar wro

Re: [Dovecot] Shared folder

2007-07-19 Thread Sergey A. Kobzar
l try and tell you results. Thanks :) -- Sergey

Re: [Dovecot] Shared folder

2007-07-19 Thread Sergey A. Kobzar
21:55 subscriptions drwx-- 2 mail mail 48 Jul 2 21:01 tmp # dovecot --version 1.0.1 # uname -rsm Linux 2.6.20-gentoo-r8 i686 === Thursday, July 19, 2007, 10:20:38 AM, you wrote: > On Thu, 2007-07-19 at 09:53 +0300, Sergey A. Kobzar wrote: >> In CommuniGate Pro I've create

Re: [Dovecot] Shared folder

2007-07-18 Thread Sergey A. Kobzar
cript and crontab. I don't think all users > should be able to report to a spamserver as they may report unwanted > mail although they are not spam. > /jon > Sergey A. Kobzar wrote: >> Hi Jon, >> >> Wednesday, July 18, 2007, 3:30:17 PM, you wrote: >> &g

Re: [Dovecot] Shared folder

2007-07-18 Thread Sergey A. Kobzar
anks in advance > Best regards - Jon It's a good question... I tried to do this with help of namespaces, but looks like it's a wrong way. I need this feature to: - Migrate from Communigate Pro and MS Exchange to dovecot - Train SpamAssassing Unfortunately I had no luck. Maybe somebody has other ideas? -- Sergey

Re: [Dovecot] Upgrade from 1.00 to 1.0.1

2007-07-05 Thread Sergey A. Kobzar
at error messages? Jun 9 14:34:11 mail dovecot: POP3([EMAIL PROTECTED]): UID larger than next_uid in file /home/mail/domain.com/aaa/dovecot-uidlist (1 >= 1) -- Sergey

Re: [Dovecot] MailMan option

2007-07-05 Thread Sergey A. Kobzar
Hi Gerard, Thanks for explanation :) I'll switch to other mail service. Thursday, July 5, 2007, 1:27:40 PM, you wrote: > On Thursday July 05, 2007 at 05:52:26 (AM) Sergey A. Kobzar wrote: >> Is it possible receive my own posts to the list? I have configured >> such opti

[Dovecot] MailMan option

2007-07-05 Thread Sergey A. Kobzar
Hi guys, Is it possible receive my own posts to the list? I have configured such option "Receive your own posts to the list? - Yes" on Mailman page but it still does not work. Any ideas? -- Sergey

Re: [Dovecot] Upgrade from 1.00 to 1.0.1

2007-07-05 Thread Sergey A. Kobzar
Hi Jon, dovecot-1.0_rc29 works fine for me except namespaces (same problem with 1.0.1). Thursday, July 5, 2007, 12:34:58 PM, you wrote: > Hi, > I tried uprading and I get less errors but I still get them. Don't you > get any error messagess with dovecot-1.0_rc29? > /jo

Re: [Dovecot] Upgrade from 1.00 to 1.0.1

2007-07-04 Thread Sergey A. Kobzar
oblem because port is masked. -- Sergey

Re: [Dovecot] NameSpases

2007-07-03 Thread Sergey A. Kobzar
Hi Timo, Tuesday, July 3, 2007, 4:26:58 PM, you wrote: > On 3.7.2007, at 13.08, Sergey A. Kobzar wrote: >> namespace private works well, but I can't subscribe to namespace >> Public in Outlooks Express, The Bat! and Mozilla Thunderbird. Outlook >> shows error 

[Dovecot] NameSpases

2007-07-03 Thread Sergey A. Kobzar
me -rsm Linux 2.6.20-gentoo-r8 i686 Any help appreciated :) -- Sergey

Re: [Dovecot] Dovecot authentication for PostFix, anyone?

2007-05-31 Thread Sergey
other relevant tips and tricks > ALTLinux provides in default installation of server-4.0 postfix with authentication against dovecot (switchable to/from cyrus by web configuration interface). Works perfect. -- Sergey Ivanov

Re: [Dovecot] v1.1 plans

2007-04-17 Thread Sergey
th=/tmp/dovecot-auth-client' -- Sergey Ivanov

Re: [Dovecot] dovecot mmap() complaints: No such device

2007-03-29 Thread sergey ivanov
Excuse me, I've forgotten to write: it's linux, and filesystem is fuse mounted zfs volume, see http://www.wizy.org. After uncommenting mmap_disable line in dovecot.conf, changing 'no' to 'yes' and restarting dovecot thre are no new complaints in logs. Thank yo

[Dovecot] dovecot mmap() complaints: No such device

2007-03-28 Thread sergey ivanov
d filesystem. -- With best regards, Sergey Ivanov.

Re: [Dovecot] 1.0.rc28 / v1.0 plans

2007-03-21 Thread sergey ivanov
I've compiled for Solaris-10 with Sun's cc, and for Altlinux. Both installations are working fine. -- Sergey. Timo Sirainen wrote: > I'll probably release 1.0.rc28 in a few days. Would be nice to get some > testing for it first. http://dovecot.org/nightly/dovecot-lat