cscmail-users Mailing List for CSCMail (Page 9)
Brought to you by:
countzer0
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(167) |
Jul
(52) |
Aug
(80) |
Sep
(53) |
Oct
(38) |
Nov
(36) |
Dec
(17) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(15) |
Feb
(2) |
Mar
(27) |
Apr
(7) |
May
(3) |
Jun
(3) |
Jul
(3) |
Aug
(1) |
Sep
(17) |
Oct
(18) |
Nov
(1) |
Dec
(11) |
2002 |
Jan
|
Feb
(7) |
Mar
|
Apr
(1) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2003 |
Jan
|
Feb
|
Mar
(10) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ben B. <be...@oc...> - 2000-10-17 18:30:01
|
Hey Ya'll, I was poking around in cscget this morning trying to figure out what my sound problems were. And I made a few adjustments to the script. I found that the sound was being played before any duplicate checking was happening, so I switched things around a little. Now it only plays the sound if there are NEW messages on the server as opposed to ANY messages. Below is the diff after the changes I made. I hope it's useful to you. I'm still working on the XMMS conflict. Cscget still hangs if I'm playing any wav audio but it does it at the end of the process rather than interrupting the mail retrieval. I think this problem has to do with linux or esd or my sound card or... Later, Ben Running CSCMail 1.6.1 [ben@va01l]$ diff /usr/bin/cscget.orig /usr/bin/cscget 116a117,119 > # init a variable for counting any NEW messages > my $new_mail_count = 0; > 173c176,178 < if ($prefs{'PlaySound'} eq "y") { system("$prefs{'SndCmd'} $prefs{'SndFl'}"); } --- > > # if ($prefs{'PlaySound'} eq "y") { system("$prefs{'SndCmd'} $prefs{'SndFl'}"); } > 219a225,228 > > # I am not using a physical mail spool for any of my accounts so I haven't tested > # this part yet but I think this is where it should go. > $new_mail_count ++; 229c238 < } --- > } 274c283 < if ($prefs{'PlaySound'} eq "y") { system("$prefs{'SndCmd'} $prefs{'SndFl'}"); } --- > # if ($prefs{'PlaySound'} eq "y") { system("$prefs{'SndCmd'} $prefs{'SndFl'}"); } 315c324 < } --- > } 346a356,360 > > # I had some problems so I used the following line for testing > # print STDOUT "counting mail as no dupe (pop3)\n"; > $new_mail_count ++; > 390c404 < }# end getmessage --- > }# end getmessage 406c420,425 < --- > # if we have new mail let's play a sound. system call return value check taken from perl cookbook p230 quick and dirty version > if ($prefs{'PlaySound'} eq "y" && $new_mail_count > 0) > { > my $rc = 0xffff & system("$prefs{'SndCmd'} $prefs{'SndFl'}"); > warn "bad return code ($rc) from PlaySound system call: $!\n" unless ($rc == 0); > } |
From: Count Z. <cou...@cy...> - 2000-10-15 17:27:43
|
Daniel Schregenberger was overheard mumbling something about this on 15 Oct 2000 12:56:26 CEST > What database are your running? CVS? > > Daniel > or CSV... hehe Actually, there are a couple of reasons why this occures with 1.6.1 ... First, try a real DB instead of CSV (as Daniel suggested) second, upgrade to 1.7.x ... There is a memory leak in Gtk-Perl involving font changing, and in CSCMail 1.7.x we don't make new messages bold anymore, instead we put a little icon next to new mail... Cuts the memory usage dramatically. -CZ |
From: Daniel S. <np...@gm...> - 2000-10-15 10:59:03
|
What database are your running? CVS? Daniel Pedro Garrett wrote: > I've just installed CSCMail v1.6.1 on my Linux box (RH6.2, kernel 2.2.14) > and I have a problem with the memory usage. > > I imported 129 messages into a new folder I made, "Work", (from a > Netscape folder file)... the entire size of the message file was about > 1MB. > > When I click on the folder after starting cscmail it takes 60 seconds > before the message list comes up and my X memory usage jumps by 5MB. If > I click on another folder, there's no change in memory usage of X or > cscmail, but then when I click back on the "Work" folder it takes another > 60 seconds and X memory usage jumps by 35MB! > > I don't have a super fast machine (266Mhz AMD) but it runs everything I > have quite nicely. It seems like just creating a 129 element list should > take too long or too much memory. > > I have XFree86 3.3.6, gtk 1.2.8, gnome 1.2.1, perl 5.005_03, Gnome.pm > 0.7000, Gtk.pm 0.7002 > > Anybody have any idea what's going on and/or what I might be able to do > about it? > > Thanks in advance, > > --Pedro > _______________________________________________ > | Be sure to read the CSCMail FAQ: > | http://www.cscmail.net/cscmail.faq > | > | CSCMail Home Page: > | http://www.cscmail.net > | > | To unsubscribe or change your preferences: > | http://lists.sourceforge.net/mailman/listinfo/cscmail-users > > |
From: Pedro G. <ped...@me...> - 2000-10-15 06:34:11
|
I've just installed CSCMail v1.6.1 on my Linux box (RH6.2, kernel 2.2.14) and I have a problem with the memory usage. I imported 129 messages into a new folder I made, "Work", (from a Netscape folder file)... the entire size of the message file was about 1MB. When I click on the folder after starting cscmail it takes 60 seconds before the message list comes up and my X memory usage jumps by 5MB. If I click on another folder, there's no change in memory usage of X or cscmail, but then when I click back on the "Work" folder it takes another 60 seconds and X memory usage jumps by 35MB! I don't have a super fast machine (266Mhz AMD) but it runs everything I have quite nicely. It seems like just creating a 129 element list should take too long or too much memory. I have XFree86 3.3.6, gtk 1.2.8, gnome 1.2.1, perl 5.005_03, Gnome.pm 0.7000, Gtk.pm 0.7002 Anybody have any idea what's going on and/or what I might be able to do about it? Thanks in advance, --Pedro |
From: Jason W. <wil...@cs...> - 2000-10-12 17:41:31
|
I know this mail list is mainly for support, but I'm not subscribed to the development list and don't feel like getting twice as much list mail. I am wondering if there are any plans to implement new filters. I would love to see a "don't download" feature. I have a friend who I'm trying to ween from his Win machine. He's used to a feature in Outlook Express that lets you check the subject, among other things, while the message is still on the server and not download it if it meets certain criteria. Apparently there are some messages that he wants to keep on his server and some he doesn't. I can see how this would be helpful since my Pop3 Mail server has some sort of "system message" that is required to sit in the in box for the mail spool to work right. It would be nice if I could just not download it instead of deleting it with a filter/rule every time it shows up again. Anyway, that's just my two cents. |
From: Krazman <kr...@zo...> - 2000-10-11 00:56:25
|
Actually I think I have it all fixed now... (The send and receive problem was based on the date::manip error you have listed in the FAQ... I just read that and fixed it appropriately...) I wanted to thank you for your time and patience... as a new linux user, I really liked the look of the program and wanted to use it on my system, and I appreciate you working with me to get it up and running... I also wanted to know the best way to setup and HTML widget so I can view the help files, in order to take advantage of some of the program features (like importing and what not)... Thanks Chris -- Krazman, kr...@zo... on 10/10/2000 |
From: Steven K. <sk...@st...> - 2000-10-10 21:03:39
|
On Tue, 10 Oct 2000 15:26:49 -0400, Krazman said: > also... > > When I try to receive mail... the % bar comes up and shows an > item... > > but then nothing shows up in the inbox, and cscget.running file just > sits there, and nothing happens, and I can't 'get' again, because an > error is generated regarding the cscget.running file... > > any ideas on that? I won't have any ideas till ya send us the output of CSCMail ... what does it say in the terminal window? (This goes for ANY and EVERY issue you have... EVER) -CZ |
From: Krazman <kr...@zo...> - 2000-10-10 19:23:28
|
also... When I try to receive mail... the % bar comes up and shows an item... but then nothing shows up in the inbox, and cscget.running file just sits there, and nothing happens, and I can't 'get' again, because an error is generated regarding the cscget.running file... any ideas on that? - Chris -- Krazman, kr...@zo... on 10/10/2000 |
From: Krazman <kr...@zo...> - 2000-10-10 18:52:55
|
Okay - I installed the 1.7.8 version from sourceforge... all seemed ok... (program loaded) I started CSV I set up 2 pop3 accounts I have... and I tried to send a message from one to the other... When I pressed send... the whole program shutdown. ???? - Chris -- Krazman, kr...@zo... on 10/10/2000 |
From: Steven K. <sk...@st...> - 2000-10-10 17:44:28
|
On Tue, 10 Oct 2000 12:37:50 -0400, Krazman said: > Fetching Gtk::XmHTML ... > Use of uninitialized value at CSCMailInstaller.pl lin 583 > sh: /gnome-perl/GtkXmHTML: no such file or directory > Use of uninitialized value at CSCMailInstaller.pl lin 591 > sh: /gnome-perl/GtkXmHTML: no such file or directory > Use of uninitialized value at CSCMailInstaller.pl lin 599 > sh: /gnome-perl/GtkXmHTML: no such file or directory > Found Date::Manip > Found DBI > ... > ... > Found Lingua::ISpell > It finds everything else... > Somehow "$builddir" is not getting set on your box... if you look at CSCMailInstaller.pl line 6, it should say: $builddir = "$ENV{'HOME'}/cscmailbuild"; Which would should (and does for everyone else in the world) set $builddir == to /your_home_dir/cscmailbuild" For some strange reason, it's ending up undefined... This is very very odd... Anyway, follow my origional advice... Grab a copy of cscmail-1.7.9 from sourceforge, and "make install" it... CSCMailInstaller.pl was written by an ex-developer of CSCMail, and it sucks anyway... (Re-writing it is one of the many things that needs to be done prior to a 1.8.0 release...) You have all the perl modules needed for CSCMail to run anyway... so just get 1.7.x, make install it, then run it... pretty simple.. .you don't NEED GtkXmHTML for CSCMail to work.. in fact, I don't recommend you use it anymore anyway... Get GtkHTML or CscHTML instead... Or, for the quick and easy, just let it use GtkText which it will do if it can't find an HTML widget ... (1.7.x will that is.. 1.6.1 isn't that smart) -CZ |
From: Krazman <kr...@zo...> - 2000-10-10 16:34:28
|
On 10 Oct 2000 11:08:40 EDT, Count Zero wrote: >I am not sure why it's giving you "use of uninitialized value" >errors, that is >odd... but what I recommend is that you grab cscmail-1.7.x from >http://sourceforge.net/projects/cscmail and simply do a "make >install" on >that... has CSCMailInstaller.pl already gone through and pulled down >all the >perl modules? Also, CSCMailInstaller.pl doesn't die when it gives >the >"uninitialized" errors, it should go on through, so what happens >after that? >Does it attempt to run CSCMail, but then CSCMail dies due to a lack >of >GtkXmHTML??? > >Copy/paste the whole darn terminal window to me... from start to >finish... when >you run CSCMailInstaller.pl Unfortunately, I can't do that, (copy paste) as my current mail program is on a different computer (win98 machine) -- However, this is the gist of what happens... Fetching Gtk::XmHTML ... Use of uninitialized value at CSCMailInstaller.pl lin 583 sh: /gnome-perl/GtkXmHTML: no such file or directory Use of uninitialized value at CSCMailInstaller.pl lin 591 sh: /gnome-perl/GtkXmHTML: no such file or directory Use of uninitialized value at CSCMailInstaller.pl lin 599 sh: /gnome-perl/GtkXmHTML: no such file or directory Found Date::Manip Found DBI .. .. Found Lingua::ISpell It finds everything else... and then it brings back the prompt [root@cmblk-01 Programs] and that is it... no program launch or anything. - Chris -- Krazman, kr...@zo... on 10/10/2000 |
From: Count Z. <cou...@cy...> - 2000-10-10 15:06:47
|
Krazman was overheard mumbling something about this on Tue, 10 Oct 2000 01:02:31 -0400 > Thanks... that solved the sh: problems, but I'm still getting > > use of uninitialized value at CSCMailInstaller.pl line 583 > use of uninitialized value at CSCMailInstaller.pl line 591 > use of uninitialized value at CSCMailInstaller.pl line 599 > It's trying to build GtkXmHTML.... Personally, I recommend you don't use XmHTML as the HTML widget anyway... (One of the nice things about 1.7.9 is we don't require an HTML widget anymore... although we can use one) I am not sure why it's giving you "use of uninitialized value" errors, that is odd... but what I recommend is that you grab cscmail-1.7.x from http://sourceforge.net/projects/cscmail and simply do a "make install" on that... has CSCMailInstaller.pl already gone through and pulled down all the perl modules? Also, CSCMailInstaller.pl doesn't die when it gives the "uninitialized" errors, it should go on through, so what happens after that? Does it attempt to run CSCMail, but then CSCMail dies due to a lack of GtkXmHTML??? Copy/paste the whole darn terminal window to me... from start to finish... when you run CSCMailInstaller.pl Thanks, -CZ |
From: Krazman <kr...@zo...> - 2000-10-10 04:59:18
|
On 09 Oct 2000 10:48:06 EDT, Steven Kordik wrote: > >Stupid me... I updated the CSCMailInstaller.pl script with the new >versions of >HTML::Parser and URI::URL a week ago, but I forgot to upload the new >version to >www.cscmail.net and ftp://cscmail.net I have now done so... Please >re-download >CSCMailInstaller.pl and re-run it... It should work now... Thanks... that solved the sh: problems, but I'm still getting use of uninitialized value at CSCMailInstaller.pl line 583 use of uninitialized value at CSCMailInstaller.pl line 591 use of uninitialized value at CSCMailInstaller.pl line 599 It looks like these lines are where it makes the Makefile.pl, the make install, and make install 2... I don't understand why these errors keep occuring... Thanks in advance... Chris -- Krazman, kr...@zo... on 10/10/2000 |
From: Steven K. <sk...@st...> - 2000-10-09 14:41:27
|
On Sun, 8 Oct 2000 03:41:31 -0400, Krazman said: > I read that this list is for partial tech support, so hopefully > someone can help me out... > > I am running Red Hat Linux 6.2 > > I installed WGet > > I set up as superuser > > I ran the CSCMailInstaller.pl file with perl > > and I got the following messages when it set up > > (These are the ones that looked like errors/problems) > > use of uninitialized value at CSCMailInstaller.pl line 583 > use of uninitialized value at CSCMailInstaller.pl line 591 > use of uninitialized value at CSCMailInstaller.pl line 599 > > sh: /gnome-perl/GtkXmHTML: no such file or directory > sh: /gnome-perl/GtkXmHTML: no such file or directory > sh: /gnome-perl/GtkXmHTML: no such file or directory > > sh: /root/cscmailbuil/HTML-Parser-3.08: no such file or directory > sh: /root/cscmailbuil/HTML-Parser-3.08: no such file or directory > sh: /root/cscmailbuil/HTML-Parser-3.08: no such file or directory > > sh: /root/cscmailbuil/URI-1.07: no such file or directory > sh: /root/cscmailbuil/URI-1.07: no such file or directory > sh: /root/cscmailbuil/URI-1.07: no such file or directory > > Can anyone help me out here? > > Thanks in advance... > > - Chris Stupid me... I updated the CSCMailInstaller.pl script with the new versions of HTML::Parser and URI::URL a week ago, but I forgot to upload the new version to www.cscmail.net and ftp://cscmail.net I have now done so... Please re-download CSCMailInstaller.pl and re-run it... It should work now... -CZ |
From: J. S. <se...@mi...> - 2000-10-08 19:22:49
|
CSC is filling the terminal window!! During downloads and as many messages are opened the terminal window reports: Argument "Mon, 25 Sep 2000 09:49:32" isn't numeric in ne at DIR/csclib.pl line 212 or Argument "" isn't numeric in ne at DIR/csclib.pl line 212 Using DateManip-5.39 Opening the Compose window to write this produced: "Use of uninitialized value at DIR/bin/cscmail line 3075" CSCMail Version 1.7.8 Thanks, js |
From: Krazman <kr...@zo...> - 2000-10-08 07:38:18
|
I read that this list is for partial tech support, so hopefully someone can help me out... I am running Red Hat Linux 6.2 I installed WGet I set up as superuser I ran the CSCMailInstaller.pl file with perl and I got the following messages when it set up (These are the ones that looked like errors/problems) use of uninitialized value at CSCMailInstaller.pl line 583 use of uninitialized value at CSCMailInstaller.pl line 591 use of uninitialized value at CSCMailInstaller.pl line 599 sh: /gnome-perl/GtkXmHTML: no such file or directory sh: /gnome-perl/GtkXmHTML: no such file or directory sh: /gnome-perl/GtkXmHTML: no such file or directory sh: /root/cscmailbuil/HTML-Parser-3.08: no such file or directory sh: /root/cscmailbuil/HTML-Parser-3.08: no such file or directory sh: /root/cscmailbuil/HTML-Parser-3.08: no such file or directory sh: /root/cscmailbuil/URI-1.07: no such file or directory sh: /root/cscmailbuil/URI-1.07: no such file or directory sh: /root/cscmailbuil/URI-1.07: no such file or directory Can anyone help me out here? Thanks in advance... - Chris -- Krazman, kr...@zo... on 10/08/2000 |
From: Daniel S. <np...@gm...> - 2000-10-06 20:53:42
|
What Database are you running? Before I switched to MySQL it was emarassingly slow in my P I/200. PostgreSQL should also be fast. Just don't use CSV. Daniel Wesley wrote: > I am currently using the PERL version, but it seems to > run just a tad slow on my system (P I/133 Mhz with 32 > MB RAM, X, GNOME, PERL 5.6.0).. its probably because > it has to load PERL with the cscmail script and > everything... so I was wondering if I should switch to > 1.9. How stable is 1.9 and could I use it from day to > day? > > Wes > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free! > http://photos.yahoo.com/ > _______________________________________________ > | Be sure to read the CSCMail FAQ: > | http://www.cscmail.net/cscmail.faq > | > | CSCMail Home Page: > | http://www.cscmail.net > | > | To unsubscribe or change your preferences: > | http://lists.sourceforge.net/mailman/listinfo/cscmail-users > > |
From: Wesley <man...@ya...> - 2000-10-06 18:18:49
|
I am currently using the PERL version, but it seems to run just a tad slow on my system (P I/133 Mhz with 32 MB RAM, X, GNOME, PERL 5.6.0).. its probably because it has to load PERL with the cscmail script and everything... so I was wondering if I should switch to 1.9. How stable is 1.9 and could I use it from day to day? Wes __________________________________________________ Do You Yahoo!? Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free! http://photos.yahoo.com/ |
From: Count Z. <cou...@cy...> - 2000-10-04 13:38:59
|
Wesley was overheard mumbling something about this on 04 Oct 2000 01:22:38 EDT > I'm probably looking as stupid as I feel right now, but please bear with me... > > I have just downloaded mail from my POP3 box that has an attachment in it > (Content-type: text/plain) and I was wondering how I would go by reading the > message, and clicking on the Clip icon to either save or view my attachment. > Just for shits and giggles, I put in: > > MIMEType: text/plain > command: joe > > into the MIMETypes dialog. When I clicked onto the Inbox again and selected my > message, nothing showed up under the two aforementioned popup menus. What am I > doing wrong? > > Cheers, > Wes This may be a "first text" bug... I'll look into it... If it's not a "private" message, would you mind sending it to me? (not the list) (ie: do "File->Save" and then e-mail me the saved file ...?) -CZ |
From: PaulW <pa...@bo...> - 2000-10-04 09:02:12
|
On 04 Oct 2000 01:22:38 EDT, Wesley said: I've just installed csc-mail 1.6.1(used the recommended method - install script, chose the RPM install), and I get the same problem. Also, I find that messages with attachments don't get deleted from the server (even though I want them to). Messages without attachments are deleted okay. CSC detects the duplicates, so they don't appear more than once, but I have to go in via an alternative method to delete them and prevent CSC from downloading them every time I fetch. I'm using POP against an Exchange server, so it might easily be a problem at the other end. > I'm probably looking as stupid as I feel right now, but please bear > with me... > > I have just downloaded mail from my POP3 box that has an attachment in > it > (Content-type: text/plain) and I was wondering how I would go by > reading the > message, and clicking on the Clip icon to either save or view my > attachment. > Just for shits and giggles, I put in: > > MIMEType: text/plain > command: joe > > into the MIMETypes dialog. When I clicked onto the Inbox again and > selected my > message, nothing showed up under the two aforementioned popup menus. > What am I > doing wrong? > > Cheers, > Wes > > > _________________________________________________________ > Do You Yahoo!? > Get your free @yahoo.com address at http://mail.yahoo.com > > _______________________________________________ > | Be sure to read the CSCMail FAQ: > | http://www.cscmail.net/cscmail.faq > | > | CSCMail Home Page: > | http://www.cscmail.net > | > | To unsubscribe or change your preferences: > | http://lists.sourceforge.net/mailman/listinfo/cscmail-users > -- Paul Wakefield |
From: Wesley <man...@ya...> - 2000-10-04 05:25:11
|
I'm probably looking as stupid as I feel right now, but please bear with me... I have just downloaded mail from my POP3 box that has an attachment in it (Content-type: text/plain) and I was wondering how I would go by reading the message, and clicking on the Clip icon to either save or view my attachment. Just for shits and giggles, I put in: MIMEType: text/plain command: joe into the MIMETypes dialog. When I clicked onto the Inbox again and selected my message, nothing showed up under the two aforementioned popup menus. What am I doing wrong? Cheers, Wes _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: Daniel S. <np...@gm...> - 2000-09-30 20:56:28
|
Use the cschtml-widget instead of xmhtml or gtkhtml. I think somewhere on the cscmail CSV page is a link where to get it. Daniel Psy wrote: > Hello again :) > Just one more think, would it be possible to select the message text > using the > mouse in the message window without needing to select "Edit"? I think > this is > the only feature that I still miss :) Sometimes I do a lot of copy n' > paste > trough aplications and would be easier if I could just select it with > the > mouse. But I suppose this is the widget fault isn't it? > > Egon |
From: Count Z. <cou...@cy...> - 2000-09-29 22:55:51
|
Jason Williams was overheard mumbling something about this on Fri, 29 Sep 2000 15:36:44 -0500 > Is anyone else getting double messages on this mailing list? Every message > I have gotten from the list has come with an identical twin. Nope... > Just wondering if it's a known problem with the list... love the program > by the way and thanks for the help on the timezone bug earlier. > > -Jason Williams No problem.. -CZ |
From: Steven K. <sk...@st...> - 2000-09-29 20:58:33
|
Date: Fri Sep 29 16:59:00 EST 2000 (countzero) Fixed updating of "Mail Check" menu's when you change an account's description. Updated the versions of Date::Manip, URI::URL, and HTML::Parser in CSCMailInstaller.pl |
From: Jason W. <wil...@cs...> - 2000-09-29 20:36:48
|
Is anyone else getting double messages on this mailing list? Every message I have gotten from the list has come with an identical twin. Just wondering if it's a known problem with the list... love the program by the way and thanks for the help on the timezone bug earlier. -Jason Williams |