search for: i_debug

Displaying 20 results from an estimated 22 matches for "i_debug".

Did you mean: __debug
2016 Nov 24
0
Implementing secondary quota w/ "Archive" namespace
...to the overquota namespace. Is that normal? > > Probably needs a bit more thinking, but I guess the attached patch would > help. > > I appreciate the patch! Esp on a Weds night. I applied and rerolled dovecot, but I can still move messages into the over-quota namespace. I threw some i_debug's into quota_roots_equal() (and one right at the top), but I don't ever see them in the debug logs. But both "ctx->moving" and "src_box == NULL" are true, so it never calls quota_roots_equal anyway in that patched 'if' clause in quota_check. I threw the follo...
2010 Mar 26
2
Busy looping of 2.0Beta4 on NetBSD-current
...vecot 1.2.x (and 1.x and 0.x..) I force ionotify and ioloop to kqueue, so I suspected that was the problem. Turns out it's not: Using poll or none also causes the same problem. This did not happen in 1.2.8 (didn't try anything later than that). After a quick visit to gdb, I added some i_debug() statements in ioloop-kqueue.c (when I had that as the notify and loop method) which showed that the loop was in io_loop_handler_run() . I haven't done any similar debugging for the other ioloop methods, but a quick look at the 2.0 changelog for those files doesn't raise any immediate...
2020 Jul 20
2
To field was not correct indexed by FTS
Hi, This To field was not correct indexed by FTS. To: Yamada Taro <yamada at example.com>,=?UTF-8?B?dXNlcjJAZXhhbXBsZS5jb20=?= <user2 at example.com>, =?UTF-8?B?dXNlcjNAZXhhbXBsZS5jb20=?= <user3 at example.com>, user4 desu <user4 at example.com> --> Yamada Taro <yamada at example.com> , user2 at example.com And follow was correct indexed by FTS To: Yamada
2011 Mar 25
1
Ignored proxy_maybe var and no local login when "host = Proxy FQDN"
...port = *tmp + 5; if (strncmp(*tmp, "destuser=", 9) == 0) destuser = *tmp + 9; } if (host == NULL || net_addr2ip(host, &ip) < 0) { /* broken setup */ T_BEGIN { i_debug("BROKEN SETUP %s", host); } T_END; return FALSE; } if (!net_ip_compare(&ip, &request->local_ip)){ T_BEGIN { i_debug("%s", "IPS NOT EQUAL"); }T_END;...
2016 Nov 24
2
Implementing secondary quota w/ "Archive" namespace
On 23 Nov 2016, at 0.49, Mark Moseley <moseleymark at gmail.com> wrote: > > If I move messages between namespaces, it appears to ignore the quotas I've > set on them. A *copy* will trigger the quota error. But a *move* just > happily piles on to the overquota namespace. Is that normal? Probably needs a bit more thinking, but I guess the attached patch would help.
2020 Jul 20
0
To field was not correct indexed by FTS
Hi, I'm Tachibana. Additionally, I found below: dovecot/src/plugins/fts/fts-build-mail.c: 187 i_debug("@@@@@ befor address parse:%s",hdr->full_value); 188 189 addr = message_address_parse(pool_datastack_create(), 190 hdr->full_value, 191 hdr->full_value_len,...
2010 Oct 23
2
[stava@telcotec.se: [stava: antispam problem]]
..."mail_debug = yes" in dovecot.conf and restarted dovecot. However, the antispam plugin module gets loaded by dovecot, but then nothing, i.e. when moving mail from Inbox to Spam and vice versa, I see nothing. How do I get debug messages from the dovecot-antispam-plugin? There's a few i_debug() statements in there (and I added a few myself), but I don't see any of these messages. # dovecot -n # 2.0.6: /etc/dovecot/dovecot.conf # OS: Linux 2.6.34.7-0.4-desktop x86_64 openSUSE 11.3 (x86_64) auth_debug = yes auth_debug_passwords = yes auth_mechanisms = plain login auth_username_forma...
2020 Jul 20
2
To field was not correct indexed by FTS
On Mon, Jul 20, 2020 at 20:24:13 +0900, TACHIBANA Masashi wrote: > Hi, > > I'm Tachibana. > Additionally, I found below: > > dovecot/src/plugins/fts/fts-build-mail.c: > > 187 i_debug("@@@@@ befor address parse:%s",hdr->full_value); > 188 > 189 addr = message_address_parse(pool_datastack_create(), > 190 hdr->full_value, > 191 hdr-&...
2011 May 06
4
compressed mboxes very slow
I have some archive mails in gzipped mboxes. I could use them with dovecot 1.x without problems. But recently I have installed dovecot 2.0.12, and they are slow. very slow. Creating index files takes about 10 minutes for ~20M file with 560 messages for bzipped mbox, for gzipped is little better but still unusable :( Stracing dovecot process shows that every ~ 20 messages it rereads complete mbox
2013 Jul 06
1
[PATCH] login-common: Add support for ECDH/ECDHE cipher suites
...o much security rather than too little. */ + nid = ssl_proxy_ctx_get_pkey_ec_curve_name(set); + ecdh = EC_KEY_new_by_curve_name(nid); + if (ecdh == NULL) { + /* Fall back option */ + nid = NID_secp384r1; + ecdh = EC_KEY_new_by_curve_name(nid); + } + if ((curve_name = OBJ_nid2sn(nid)) != NULL) + i_debug("SSL: elliptic curve %s will be used for ECDH and" + " ECDHE key exchanges", curve_name); + if (ecdh != NULL) { + SSL_CTX_set_tmp_ecdh(ssl_ctx, ecdh); + EC_KEY_free(ecdh); + } +#endif } static void @@ -1084,6 +1135,28 @@ } static int +ssl_proxy_ctx_get_pkey_ec...
2012 Sep 27
7
Antispam plugin problem (CRM114)
Hi to all, sorry in advance for my poor english, this is the first time that i wrote to a list if i make mistake .... excuseme. My problem is this: i have dovecot 2.1.8 installed and functioning from 2 years one week ago i have installed crm114 for my last spam detection filter "version 20100106-BlameMichelson (TRE 0.8.0 (BSD))" My mail system is qmail that through .qmail default
2017 Feb 14
0
openssl 1.1.0d breaks Android7 TLS connects
...= EC_KEY_new_by_curve_name(nid); if (ecdh == NULL) { /* Fall back option */ nid = NID_secp384r1; ecdh = EC_KEY_new_by_curve_name(nid); } if ((curve_name = OBJ_nid2sn(nid)) != NULL && set->verbose_ssl) i_debug("SSL: elliptic curve %s will be used for ECDH and" " ECDHE key exchanges", curve_name); if (ecdh != NULL) { SSL_CTX_set_tmp_ecdh(ssl_ctx, ecdh); EC_KEY_free(ecdh); } #endif The OpenSSL CHANGES file says...
2010 Jun 14
1
2.0.beta6 panic (mailbox_list_get_unexpanded_path)
...t.c: line 318 (mailbox_list_get_unexpanded_path): assertion failed: (*location == '0') The location string is "1mdbox:/Volumes/Mail/joe". This did not happen with beta5. Backtrace: 0 __kill + 10 1 abort + 90 2 default_fatal_finish + 68 3 i_internal_error_handler + 0 4 i_debug + 0 5 mailbox_list_get_unexpanded_path + 111 6 mailbox_list_mkdir + 70 7 mdbox_map_open_internal + 169 8 mdbox_map_open_or_create + 14 9 mdbox_write_index_header + 51 10 mdbox_mailbox_create_indexes + 27 11 dbox_mailbox_create + 155 12 mailbox_open_full + 267 13 cmd_select_full + 1856...
2010 Jul 30
1
Debugging Plug-In
Hi, I'm very new to Dovecot plug-in development. Is there a simple way to do so some simple logging. I want and equivalent of printf to be able stick strings in /var/log/maillog. Regards, John
2010 Oct 14
1
assertion failed: (auth_request_state_count[request->state] > 0)
...quest_set_state): assertion failed: (auth_request_state_count[request->state] > 0) Here is a backtrace, unfortunately somewhat obfuscated by compiler optimization. 0 __pthread_kill + 10 1 pthread_kill + 95 2 abort + 143 3 i_set_failure_file + 274 4 i_set_failure_internal + 103 5 i_debug + 0 6 auth_request_initial + 0 7 auth_request_initial + 71 8 auth_penalty_anvil_callback + 207 9 anvil_client_connect + 364 10 io_loop_handler_run + 234 11 io_loop_run + 56 12 master_service_run + 27 13 main + 674 14 start + 52
2014 Mar 12
0
Finding memory leaks
...: SHA1 Hello, I try to find a memory leak in a dovecot plugin that I develop. In order to find it, it would be helpful to print the total amount of memory that is currently allocated. This print could than spread over the source code and the memory consumption can be tracked. I've tried i_debug("pool size %u", (unsigned int)pool_alloconly_get_total_alloc_size(system_pool)); But that failed. Does someone has a good advice? I would like to avoid complex solutions like valgrind. Best regards, Philipp -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (GNU/Linux) Comment...
2013 Nov 11
0
Getting debug output from antispam plugin with dspam
...| egrep -e '^dspam' dspam 2939 0.0 0.0 116408 2420 ? S 15:38 0:00 /usr/sbin/dspam --daemon --debug # egrep '^Debug ' /etc/dspam/dspam.conf Debug * Even if I set dspam binary to file that do not exist i do not get any debugging messages (according to code function i_debug("execution %s failed...") should be triggered). Maybe there is some kind of verbose output knob for plugins in Dovecot? I turned on everything I found (also using mail_log for imap protocol): # doveconf -n|egrep -e '(verbose|debug)' auth_debug = yes auth_verbose = yes mail_debug...
2017 Apr 14
0
Test error: net_connect_ip(127.0.0.1:0) failed: Can't assign requested address
...0, .connect_retry_count = 3, .connect_retry_interval_msecs = 10, .max_idle_time = 10000, }; The client fails if the server is not listening... Is the test server listening? static int test_open_server_fd(in_port_t *bind_port) { int fd = net_listen(&bind_ip, bind_port, 128); if (debug) i_debug("server listening on %u", *bind_port); if (fd == -1) { i_fatal("listen(%s:%u) failed: %m", net_ip2addr(&bind_ip), *bind_port); } fd_set_nonblock(fd, FALSE); return fd; } Forcing debug... >grep 'static bool debug =' test-imapc-client.c static bool debug =...
2009 Oct 30
2
More dovecot-2.0.alpha2 problems
...ibSystem.B.dylib 0x00007fff876a4e12 abort + 90 4 libdovecot.0.dylib 0x00000001000e8027 i_set_failure_file + 275 5 libdovecot.0.dylib 0x00000001000e6eef i_set_failure_internal + 103 6 libdovecot.0.dylib 0x00000001000e76d2 i_debug + 0 7 libdovecot-storage.0.dylib 0x000000010005768a dbox_file_seek_next + 0 8 libdovecot-storage.0.dylib 0x000000010005772a dbox_file_seek_next + 160 9 libdovecot-storage.0.dylib 0x0000000100084266 mdbox_storage_rebuild + 1406 10 libdovecot-storage.0.dylib...
2012 Dec 10
3
Automatically Cleaning Kerberos Credential Cache Files
I'm in a situation here at work where I'm trying to support a mixed network of OS X and RHEL desktop machines with a Postfix/Dovecot combination. - user account information is stored in LDAP - user credentials are in MIT Kerberos - server is running RHEL 6/Dovecot 2.0.9/Postfix 2.6.6 I am currently using the PAM passdb module to authenticate my users (I began to have trouble