Displaying 7 results from an estimated 7 matches for "lib_init".
2008 Jul 31
4
syslog with PID
Hi,
LOG_NDELAY is the only option for openlog() in dovecot 1.1.2.
Wouldn't be
LOG_NDELAY|LOG_PID as option parameter much more useful?
Without logging
the pid, it is impossible to match 'Disconnected' log entries and the
corresponding session start/login. Therefore I suggest to use
LOG_NDELAY|LOG_PID
in the options of i_set_failure_syslog() at all 6 occurrences which passes
it
2006 Dec 18
2
[PATCH] Fix for dovecotpw on powerpc and other architectures
...ed by default.
--- dovecot-1.0/src/util/dovecotpw.c (revisione 2066)
+++ dovecot-1.0.new/src/util/dovecotpw.c (copia locale)
@@ -40,7 +40,7 @@
const char *user = NULL;
char *scheme = NULL;
char *plaintext = NULL;
- char ch;
+ signed char ch;
int lflag = 0, Vflag = 0;
lib_init();
Thanks!
Fabio Tranchitella <kobold at debian.org> .''`.
Proud Debian GNU/Linux developer, admin and user. : :' :
`. `'`
http://people.debian.org/~kobold/...
2011 Apr 09
1
pop3-login segfaults (new backtrace)
...ecot-2.0-hg/src/lib-dovecot/.libs/libdovecot.so.0
No symbol table info available.
#6 0x00007fffffffe260 in ?? ()
No symbol table info available.
#7 0x000000004da57f53 in ?? ()
No symbol table info available.
#8 0x0000000000000048 in ?? ()
No symbol table info available.
#9 0x000000080049d5ae in lib_init () from
/dovecot-2.0-hg/src/lib-dovecot/.libs/libdovecot.so.0
No symbol table info available.
#10 0x000000004da031c7 in ?? ()
No symbol table info available.
#11 0x0000000000054e94 in ?? ()
No symbol table info available.
#12 0x0000000000403392 in ?? ()
No symbol table info available.
#13 0x0000000...
2006 Sep 05
2
rc7 bug? [Was: deliver LDA and INBOX location] (fwd)
Anyone had any thoughts on the item below?
If the problem is with my config, I'd like to be guided towards how I
might resolve it.
If it is a bug in rc7, it would be good to fix it, and I'd be happy to
beta-test.
--
: David Lee I.T. Service :
: Senior Systems Programmer Computer Centre :
:
2008 Nov 07
6
Cannot get the libwrap patch work
Hello there,
I have been trying to make the patch work for libwrap(TCP
Wrappers) posted on http://dovecot.org/patches
<http://dovecot.org/patches%20Patch%20of%201.1> Patch of 1.1 but could not
get it work. Any help will be highly appreciated. After compiling and
running it I get error "Error: login_tcp_wrappers can't be used because
Dovecot wasn't built with
2006 Apr 28
1
imaptest, with options!
I hacked some command line options into imaptest.
I dont think I broke it..
Place into dovecot-source root as usual and compile with:
gcc imaptest.c -o imaptest -Wall -W -I. -Isrc/lib -DHAVE_CONFIG_H
src/lib/liblib.a
As per Timo's instructions.
# imaptest -h imaptest [USER at IP:PORTNO] [pass=PASSWORD] [mbox=MBOX]
[clients=CC] [msgs=NMSG] [use_authenticate] [PORTNO]
USER = template for
2008 Nov 08
1
dovecot Digest, Vol 67, Issue 19
...H_DEBUG") != NULL;
ssl_require_client_cert = getenv("SSL_REQUIRE_CLIENT_CERT") != NULL;
+ tcp_wrappers = getenv("TCP_WRAPPERS") != NULL;
greeting = getenv("GREETING");
if (greeting == NULL)
@@ -419,11 +469,12 @@
restrict_access_by_env() is called */
lib_init();
+ process_name = strrchr(argv[0], '/');
+ process_name = process_name == NULL ? argv[0] : process_name+1;
+
if (is_inetd) {
/* running from inetd. create master process before
dropping privileges. */
- process_name = strrchr(argv[0], '/');
- process_name = process_...