Custom Query (44 matches)
Results (28 - 30 of 44)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#28 | fixed | Support feeding junk to peers | ||
Description |
This patch from Andrew Gierth adds the capability to feed articles accepted and filed in junk (due to wanttrash) to peers based on their feed patterns (applied to the Newsgroups header as if the article were accepted and all those groups were carried). This is required if you want to run INN with a minimal active file and propagate all posts. |
|||
#123 | fixed | Use Getopt::Std instead of legacy getopts.pl | ||
Description |
In getopts.pl, we can read:
Moreover, it causes problems like: % innmail -h
getopts.pl: if($pos >= $[) { if($args[$pos+1] eq ':') { ### <--- Line 26 shift(@ARGV); % innmail -s "test" mail-address
We should use Getopt::Std instead of getopts.pl. |
|||
#132 | fixed | auth_krb5: use the modern function calls to get the Kerberos error | ||
Description |
auth_krb5 needs to be ported to the modern function calls to get the Kerberos error instead of using com_err, which will eliminate the need for including com_err.h or et/com_err.h which are no longer part of the official Kerberos API. This requires a replacement for krb5_{get,free}_error_message on older systems. rra-c-util does this in portable/krb5.h and portable/krb5-extra.c (along with a ton of other Kerberos portability stuff). It would be possible to add a subset of that logic, although it will require some surgery to fit into the INN compilation framework. INN's configure will then no longer have to clear KRB5_LIBS if neither et/com_err.h nor com_err.h could be found and --with-krb5 was not given. |