Forwarded bugs from Debian
paul cannon <[email protected]> Fri, 11 Feb 2005 12:32:58 -0700
| Newsgroups | gmane.mail.gotmail |
|---|---|
| Message-ID | <[email protected]> |
--EuxKj2iCbKjpUGkD
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Following are some bug reports left for gotmail on the Debian bts
(see http://bugs.debian.org/gotmail ). Do with them as you see fit :)
I'm tagging them as having been sent upstream.
#282175 (merged with #282430)
Severity: important
http://bugs.debian.org/282175
Problems with deleting and moving messages for Gotmail users who have
Hotmail accounts in different languages. Some patches and other
information in the logs.
#287436
Severity: wishlist
http://bugs.debian.org/287436
Request that gotmail output ongoing messages like "Getting message 35
or 42"
#287438
Severity: wishlist
http://bugs.debian.org/287438
Request to add functionality to use Bogofilter instead of Spamassassin
And finally, attached is the patch I apply to the gotmail script itself
for its Debian 0.8.2-2 version. Might be useful.
--
paul
--EuxKj2iCbKjpUGkD
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=patch-for-upstream
--- gotmail-0.8.2.orig/gotmail
+++ gotmail-0.8.2/gotmail
@@ -197,7 +197,7 @@
# and also to Tim Dijkstra. -pik-
sub parseConfig {
- if ("@ARGV" =~ /(\s|^)(-c|--config-file)\ ([\w\.~\/\-]*)(\s|$)/i) {
+ if ("@ARGV" =~ /(\s|^)(-c|--config-file)\ ([\w\.~\/\-\@]*)(\s|$)/i) {
$conf_file = $3;
if (! -r $conf_file) {
die "Config file <$conf_file> is not readable!\n";
@@ -1008,7 +1008,7 @@
open PR,"|" . $conf_procmail_bin;
print PR $output;
close PR;
- print "Done.\n";
+ dispText("Done.\n");
}
elsif ($resend_address eq "") {
my($output) = $Message;
@@ -1123,13 +1123,13 @@
if ($conf_movespam) {
# Figure out the ID of the Spam folder
$spam_folder_id = getFolderId($host, $folder_index_url, $conf_movespam);
- print "\$spam_folder_id->".$spam_folder_id."\n";
+ dispText("\$spam_folder_id->".$spam_folder_id."\n");
}
if ($conf_move_messages_after_download) {
# Figure out the ID of the move to folder
$move_folder_id = getFolderId($host, $folder_index_url, $conf_move_messages_after_download);
- print "\$move_folder_id->".$move_folder_id."\n";
+ dispText("\$move_folder_id->".$move_folder_id."\n");
}
# Ok let's get the folder list!
--EuxKj2iCbKjpUGkD
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Gotmail-list mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/gotmail-list
--EuxKj2iCbKjpUGkD--