d. henman <[email protected]> ha escrit: > The inc program also does not work. I am thinking that it is the same > problem.
That's highly improbable. These are two entirely independent protocols and modules. > Here is the result of running it on the command line: > > $inc --debug-level=mailer.prot,trace7 Mailer has nothing to do with retrieving mail. A "mailer" is an object used to send mail (as its name implies), not to receive it. Therefore this debug level is completely senseless when used with inc. What you should use instead is this: --debug-level=mailbox.prot It will show you the most detailed information, with the POP session transcript, including security sensitive data (e.g. password) in plaintext. To avoid disclosing them, use: --debug-level='mailbox.prot,!trace6' (notice the quotes, necessary to prevent ! from being interpreted by the shell). You will find the detailed description of the debug level syntax and available debug levels here: http://mailutils.org/wiki/Debug_level If you are having difficulties interpreting the produced listing, feel free to post it either to the list or to me directly (take care not to disclose your password!). Regards, Sergey _______________________________________________ Bug-mailutils mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-mailutils
