# HG changeset patch # User Timo Sirainen # Date 1056580975 -10800 # Node ID b3ae1757f9216c69818ca0182965a86b291f3213 # Parent f1711e0f70350520259c7b1e02f62be554b9c294 ~/rawlog -> ~/dovecot.rawlog diff -r f1711e0f7035 -r b3ae1757f921 INSTALL --- a/INSTALL Wed Jun 25 19:39:06 2003 +0300 +++ b/INSTALL Thu Jun 26 01:42:55 2003 +0300 @@ -63,7 +63,7 @@ --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 -r f1711e0f7035 -r b3ae1757f921 src/imap/rawlog.c --- a/src/imap/rawlog.c Wed Jun 25 19:39:06 2003 +0300 +++ b/src/imap/rawlog.c Thu Jun 26 01:42:55 2003 +0300 @@ -101,7 +101,7 @@ 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);