Hi all
I am using popper 4
I have altered genpath.c to hash the directories 3 times
return hash_buf;
} /* hash_spool == 1 */
else
if ( iMethod == 2 ) {
hash_buf [ 0 ] = *pszUser;
hash_buf [ 1 ] = '/';
hash_buf [ 2 ] = ( *(pszUser + 1) ? *(pszUser + 1) : *pszUser);
hash_buf [ 3 ] = '/';
hash_buf [ 4 ] = ( *(pszUser + 2) ? *(pszUser + 2) : *pszUser);
hash_buf [ 5 ] = '/';
hash_buf [ 6 ] = '\0';
return hash_buf;
} /* hash_spool == 2 */
else
return NULL;
eg maida will use /var/mail/m/a/i/maida
I am wanting the .user.pop files to be in /var/mail/popfiles
eg /var/mail/popfiles/.maida.pop
At the moment the .user.pop files are being created in
/var/mail/popfiles/m/a/i/.maida.pop
I have configured popper with temp-dir = /var/mail/popfiles but it is still
hashing the .user.pop file
Does anybody have any ideas how to do this??