From: Timo Sirainen Date: Wed, 25 Jun 2003 22:42:55 +0000 (+0300) Subject: ~/rawlog -> ~/dovecot.rawlog X-Git-Tag: 1.1.alpha1~4529 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce03b11ecfd046720309d8b91a4d9db5e24cd82b;p=thirdparty%2Fdovecot%2Fcore.git ~/rawlog -> ~/dovecot.rawlog --HG-- branch : HEAD --- diff --git a/INSTALL b/INSTALL index 72acbc6d7d..224c2ce88e 100644 --- a/INSTALL +++ b/INSTALL @@ -63,7 +63,7 @@ a bit of disk space (in .imap.index.data file) and memory. --with-rawlog Build support for logging user traffic When Dovecot is compiled with this option and user's home directory -contains rawlog directory, all IMAP connections are logged into +contains dovecot.rawlog directory, all IMAP connections are logged into timstamp-pid.in and .out files. This is mostly useful for debugging. --enable-debug Enable some extra checks for debugging diff --git a/src/imap/rawlog.c b/src/imap/rawlog.c index 69c785f27e..f9ee408976 100644 --- a/src/imap/rawlog.c +++ b/src/imap/rawlog.c @@ -101,7 +101,7 @@ void rawlog_open(int *hin, int *hout) home = "."; /* see if we want rawlog */ - path = t_strconcat(home, "/rawlog", NULL); + path = t_strconcat(home, "/dovecot.rawlog", NULL); if (stat(path, &st) < 0) { if (errno != ENOENT) i_warning("stat() failed for %s: %m", path);