cscmail-users Mailing List for CSCMail (Page 11)
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: Count Z. <cou...@cy...> - 2000-09-14 01:01:43
|
Psy was overheard mumbling something about this on 13 Sep 2000 15:17:40 -0300 > Hello all, > > I've just installed the latest stable version o CSCMail (1.6.1). It was > really the only e-mail program I've seen that's really functional in > Linux/Gnome, congratulations :) But I ran across some problems: > > First, I cannot see HTML mail, I can only see the source: > Thats a multi-part issue... > ------=_NextPart_000_000E_01C016C3.B6761680 > Content-Type: text/html; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > <HTML><HEAD> > < ... (etc) ...> > </HTML> > > I've installed Gtk-XmHTML, I've tried to install also GtkHTML but I had > some compilation problems and I gave up. But shouldn't it be working > whith only GtkXmHTML? > In the gnome-perl distribution, I can run `make test`, select "Gnome > HTML" and it work's fine. > > I'm having problems with attachments also, sometimes CSCMail recognizes > them but most of the time not. I receive just this: > > > ------=_NextPart_000_0088_01BBF778.595CA2C0 > Content-Type: application/msword; > name="questionarios.doc" > Content-Transfer-Encoding: base64 > Content-Disposition: attachment; > filename="questionarios.doc" > > AAAAAAAAAAAAAAAAAAAAAA== > > ------=_NextPart_000_0088_01BBF778.595CA2C0-- > > > 0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAA > (etc, etc) > > > When I select "save" or "view" attachment nothing is displayed. > What could it be? Can it be some installation problems? Any help would be > appreciated :) More of the same problem... Here's the deal, 1.6.1, with SOME mail servers, chops off the first line of all incoming messages. This throws off the MIME decoding, and since the message doesn't get properly decoded, HTML mail etc. doesn't work right... This has been FIXED in 1.7.x ... so I suggest you download the tarball from Sourceforge... > developers: Keep the good work! > > thanks :) Thank you! I am rapidly approaching a 1.8.0 release (I know, I have said this many times...) I just started working at (surprise) Mail.com and so I am doing a ton of mail related coding these days.... My co-workers are all keen on CSCMail, and so things are rolling right along (notice the commit today? hehe) -CZ |
From: UltimateLodging <pwa...@ul...> - 2000-09-14 00:29:09
|
So where are the fixes? I can't seem to locate them at the sourceforge.net location. Paul On 13 Sep 2000 18:38:16 EDT, Steven Kordik said: > Date: Wed Sep 13 18:22:00 EST 2000 > > (countzero) > > Fixed some bugs... > > 1) Attachments with spaces in the filenames could not be viewed/saved > correctly > via the "inline attachments" hyperlinks. This has been fixed. > > 2) When using an HTML widget, if a text/plain part was found BEFORE a > text/html > part, the text/plain part was used for display, and the text/html part > showed > up in the attachment list... now, we scan the parts first, and find > both the > first text and the first html part. If we are using an HTML widget to > view the > mail, we set $view_part = $firsthtml, and discard $firsttext. If we > are using > a text widget to view the mail, we set $view_part = $firsttext and we > add > $firsthtml to the attachment list (so that you can view it in Netscape > or > whatever) I am a little worried, since we discard $firsttext when > viewing > HTML, that there may be some "missing" attachments.. (say, if someone > sends you > a message with a text/html body, and a text/plain attachment that is > different > than the text/html body...) if this is an issue, I will add the > $firsttext to > the attachment list... What I really need is a way to compare > $firsttext and > $firsthtml to ensure that they are the same message, and then only > display the > right one, discarding the other... Anyway... this new method is > better than > before... > > -CZ > _______________________________________________ > | 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 R. Watkins Decision Systems Support, Inc. Ultimate Lodging Guide pwa...@ul... www.ultimatelodging.com -------------------- |
From: Steven K. <sk...@st...> - 2000-09-13 22:32:49
|
Date: Wed Sep 13 18:22:00 EST 2000 (countzero) Fixed some bugs... 1) Attachments with spaces in the filenames could not be viewed/saved correctly via the "inline attachments" hyperlinks. This has been fixed. 2) When using an HTML widget, if a text/plain part was found BEFORE a text/html part, the text/plain part was used for display, and the text/html part showed up in the attachment list... now, we scan the parts first, and find both the first text and the first html part. If we are using an HTML widget to view the mail, we set $view_part = $firsthtml, and discard $firsttext. If we are using a text widget to view the mail, we set $view_part = $firsttext and we add $firsthtml to the attachment list (so that you can view it in Netscape or whatever) I am a little worried, since we discard $firsttext when viewing HTML, that there may be some "missing" attachments.. (say, if someone sends you a message with a text/html body, and a text/plain attachment that is different than the text/html body...) if this is an issue, I will add the $firsttext to the attachment list... What I really need is a way to compare $firsttext and $firsthtml to ensure that they are the same message, and then only display the right one, discarding the other... Anyway... this new method is better than before... -CZ |
From: Psy <ps...@on...> - 2000-09-13 18:18:32
|
Hello all, I've just installed the latest stable version o CSCMail (1.6.1). It was really the only e-mail program I've seen that's really functional in Linux/Gnome, congratulations :) But I ran across some problems: First, I cannot see HTML mail, I can only see the source: ------=_NextPart_000_000E_01C016C3.B6761680 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> < ... (etc) ...> </HTML> I've installed Gtk-XmHTML, I've tried to install also GtkHTML but I had some compilation problems and I gave up. But shouldn't it be working whith only GtkXmHTML? In the gnome-perl distribution, I can run `make test`, select "Gnome HTML" and it work's fine. I'm having problems with attachments also, sometimes CSCMail recognizes them but most of the time not. I receive just this: ------=_NextPart_000_0088_01BBF778.595CA2C0 Content-Type: application/msword; name="questionarios.doc" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="questionarios.doc" AAAAAAAAAAAAAAAAAAAAAA== ------=_NextPart_000_0088_01BBF778.595CA2C0-- 0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAA (etc, etc) When I select "save" or "view" attachment nothing is displayed. What could it be? Can it be some installation problems? Any help would be appreciated :) developers: Keep the good work! thanks :) -- Psy |
From: PRW <pr....@ho...> - 2000-09-13 09:39:34
|
I've been working with the CSV database but now want to change to MySql. How do I do this so CSC 1.7.8 will recognize the database. Thanks Paul |
From: Count Z. <cou...@cy...> - 2000-09-13 05:43:04
|
Daniel Schregenberger was overheard mumbling something about this on Tue, 12 Sep 2000 12:08:25 +0200 (MEST) > I recently upgrade my 1.6.1 to 1.7.8. The only thing that changed with the > data format was that CZ added the BCC field to the messages database. So you > have to add this filed manually. > If you use CSV-"Database" this is very easy, just add the column to the > messages file and complete the old messages with a comma at the end. > If you're using a real database you have to add it there. For example in > MySQL. (Actually I dont remember the command to do this, I found it > somewhere > in the documentation of MySQL on the Web) > > To make sure you dont lose data I would also export all the messages. Just > in case something goes wrong. > > I hope this helps > > Daniel > > PS: CZ, please correct me if I'm wrong with the changes: I couldn't find > any other database changes than the BCC field and my 1.7.8 works really fine > now. Also you need to add the mimetypes and lists tables... create table mimetypes (id int4, mime text, command text, icon text); create table lists (id int4, address text, description text); Mimetypes is for the "view" mime association stuff, and lists is for the "reply to list" feature (for those @gnome.org and other mailing lists that set reply-to to the sender, not the list...) Check through the mailing list archives and the changelog for details... -CZ |
From: Daniel S. <Np...@gm...> - 2000-09-12 10:08:57
|
I recently upgrade my 1.6.1 to 1.7.8. The only thing that changed with the data format was that CZ added the BCC field to the messages database. So you have to add this filed manually. If you use CSV-"Database" this is very easy, just add the column to the messages file and complete the old messages with a comma at the end. If you're using a real database you have to add it there. For example in MySQL. (Actually I dont remember the command to do this, I found it somewhere in the documentation of MySQL on the Web) To make sure you dont lose data I would also export all the messages. Just in case something goes wrong. I hope this helps Daniel PS: CZ, please correct me if I'm wrong with the changes: I couldn't find any other database changes than the BCC field and my 1.7.8 works really fine now. > Hi, > > i downloaded the latest version and tried to migrate to it. What > scripts do i need to run? I couldn't find no information about it > in the "changelog". > > > Best regards, > Torsten. -- Sent through GMX FreeMail - http://www.gmx.net |
From: Count Z. <cou...@cy...> - 2000-09-12 04:38:40
|
Torsten Mohr was overheard mumbling something about this on 12 Sep 2000 05:38:41 CEST > Hi, > > i downloaded the latest version and tried to migrate to it. What > scripts do i need to run? I couldn't find no information about it > in the "changelog". The changelog details all the DB changes that need to be made in conjunction with an upgrade... but it doesn't do so in ONE place... basically what you have to do is read the ChangeLog from the date of 1.6.1 release onward, and apply any changes you come accross. The EASIEST upgrade path is to simply EXPORT all of your mail to MBOX in 1.6.1 .. wipe your database and delete your ~/.cscmail directory, and then install 1.7.x and re-import all of your mail... of course, this doesn't keep your filters, accounts, addressbook, or folder settings .. so if you have a lot of these things, it is better to read the changelog and apply the changes by hand... do not worry however, the WORST that can happen if you upgrade to 1.7.x without doing any DB migration stuff is that CSCMail can crash / give errors when you try to do stuff (send a message, etc) and the good news is, it will give an error that sort of explains what you missed, so you can then grep for that in the ChangeLog to see what to do.. hehe (trial and error...) but this will not cause loss of mail... This, BTW, is why 1.7.x IS 1.7.x and not 1.8.0 ... I have been kinda lazy/busy recently and haven't written the migration scripts yet.... -CZ |
From: Count Z. <cou...@cy...> - 2000-09-12 04:32:22
|
Torsten Mohr was overheard mumbling something about this on 12 Sep 2000 05:45:10 CEST > Hi, > > when i push the right mouse button on a mail i get a popup menu > and can move it or do some other things. > > When i click on a mail (left button) it is shown and i can read it. > When i then click on a mail (right button) all the actions refer to > the first mail, the one that is shown with a blue background and > not the one i clicked on. No, Right Click's do not select items, so you must FIRST select the messages that will be the target of the right click's action (select with Left Click, the arrow keys, shift-click or ctrl-click) .... The right click actions target ALL selected messages, so if you "shift-click" or "ctrl-click" to select multiple messages, they will all be targeted by your right click. This is actually programmer controllable, but if I allow Right Clicks to select items, what ends up happening, is if you have 5 messages selected (say via a "Shift-Click") when you right click on them, ONLY the one that you right clicked on ends up being selected... so I block the right click selection feature so that multiple messages can be targetted... -CZ |
From: Torsten M. <tmohr@s.netic.de> - 2000-09-12 03:48:48
|
Hi, i downloaded the latest version and tried to migrate to it. What scripts do i need to run? I couldn't find no information about it in the "changelog". Best regards, Torsten. |
From: Torsten M. <tmohr@s.netic.de> - 2000-09-12 03:48:45
|
Hi, when i push the right mouse button on a mail i get a popup menu and can move it or do some other things. When i click on a mail (left button) it is shown and i can read it. When i then click on a mail (right button) all the actions refer to the first mail, the one that is shown with a blue background and not the one i clicked on. Or is this a problem of my window manager? I use "olvwm". Best regards, Torsten. |
From: Count Z. <cou...@cy...> - 2000-09-11 23:18:59
|
Daniel Schregenberger was overheard mumbling something about this on 10 Sep 2000 22:43:47 CEST > Just a suggestion: why dont you display the users home-folder when saving > attachments? That would be a little bit more comfortable, I think. It displays whatever directory you where in when ran CSCMail .. so... Just run CSCMail from your home dir ... I guess if you have added CSCMail to a windowmanager's menu, I can see where it might display a different directory. I will look into adding an option to force all fileselectors to start in ~ ... of course, I personally HATE the Gtk+ file selection widget... One of these days I am going to get adventuresome and code my own... but of course that will be in the C version only... -CZ |
From: Daniel S. <np...@gm...> - 2000-09-10 20:54:30
|
Just a suggestion: why dont you display the users home-folder when saving attachments? That would be a little bit more comfortable, I think. > Again, a call goes out to anyone running 1.7.8 who is having ANY > problems to > PLEASE e-mail me and let me know what you have found, so I can make > sure to get > the bug fixes into 1.8.0 |
From: Count Z. <cou...@cy...> - 2000-09-10 15:12:00
|
Olli was overheard mumbling something about this on 10 Sep 2000 12:17:26 CEST > Hi, > > Running version 1.6.1, I enjoy using cscmail as my favorite mailer. > Everything works fine, however, occasionally it happens that a message is > downloaded (I see the little widget, showing two gauge bars and the > number of messages to be downloaded), but after Download I CANNOT see > this message in the Inbox! Has anybody seen such behavior? > > Thank you for help, > Oliver There where some bugs in 1.6.1's handling of messages, I suggest you upgrade to 1.7.8 (CVS) You can grab a tarball from Sourceforge, or you can download the code directly from CVS. 1.7.8 is definately stably enough for day to day usage, I just finished doing a "cross platform" check on it, running CSCMail on my Solaris 7 box at work, and am glad to report 100% compatability. I am getting settled into my new job, and I hope to be able to finish up the few tail end features needed to release a "1.8.0" CSCMail. One thing I am going to need to do is re-write the CSCMailInstaller.pl script, to make it a bit more flexible, also, CSCMail is currently hard-coded for #!/usr/bin/perl and in some cases perl is in other places (#!/usr/local/bin/perl on Solaris for example) so I am going to make that sort of thing Makefile configurable so that no "hand" tweeking is necisary ... Again, a call goes out to anyone running 1.7.8 who is having ANY problems to PLEASE e-mail me and let me know what you have found, so I can make sure to get the bug fixes into 1.8.0 -CZ |
From: Daniel S. <np...@gm...> - 2000-09-10 15:03:31
|
Yes, I had the same problem with 1.6.1 But the messages that have not been downloaded were old messages that have not been deleted from the server. There was something wrong with the message header. If you delete these messages in CSCMail and click "send & recieve", they will appear in the inbox, but they will nevertheless be deleted from the server. You may also try to look at the messages trough the Web-Interface of GMX. That can show you wich messages aren't downloaded. In my case, upgrading to 1.7.8 solved this problem. Daniel Olli wrote: > Hi, > > Running version 1.6.1, I enjoy using cscmail as my favorite mailer. > Everything works fine, however, occasionally it happens that a message > is > downloaded (I see the little widget, showing two gauge bars and the > number of messages to be downloaded), but after Download I CANNOT see > this message in the Inbox! Has anybody seen such behavior? > > Thank you for help, > Oliver > > -- > Dulce et decorum > est pro patria mori > > Olli B. > Fon: 030-47475624 > Mail: obi...@gm... > -- > > _______________________________________________ > | 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: Olli <obi...@gm...> - 2000-09-10 11:13:38
|
Hi, Running version 1.6.1, I enjoy using cscmail as my favorite mailer. Everything works fine, however, occasionally it happens that a message is downloaded (I see the little widget, showing two gauge bars and the number of messages to be downloaded), but after Download I CANNOT see this message in the Inbox! Has anybody seen such behavior? Thank you for help, Oliver -- Dulce et decorum est pro patria mori Olli B. Fon: 030-47475624 Mail: obi...@gm... -- |
From: Count Z. <cou...@cy...> - 2000-09-08 11:08:34
|
Torsten Mohr was overheard mumbling something about this on Fri, 8 Sep 2000 05:52:43 +0200 > Hi, > > normally i use cscmail-1.61, my favorite mail tool. > > But now i have some problems, here's a list of what i did/what happened: > > - I updated to Perl-5.6.0 > - Some modules for cscmail were no longer available > - i reinstalled cscmail-1.61 > > Now cscmail starts, but when i now press the "Send & Receive"-Button, > there's a line on the console: > Can't ignore signal CHLD, forcing to default. This is something with Perl-5.6 .. I get the same error, but it still works right... If I comment out the $SIG{CHLD} ='IGNORE'; line in cscmail you end up with a ton of "zombie" cscget processes filling up your process table. If you leave it in, you get the "Can't ignore" error, but no processes, so it is obviously ignoring them anyway! hehe So, they changed something in 5.6 regarding $SIG's .. I'll look into it more when I get the time, but for now thats a harmless error... CSCMail still works fine... > When there's mail available i get something like: > ERROR: Date::Manip unable to determine TimeZone. > Date::Manip::Date_TimeZone called at > /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 620 > Date::Manip::Date_Init() called at > /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 738 > Date::Manip::ParseDateString('Thu, 7 Sep 2000 20:46:17 -0700') > called > at /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 1655 This is in the FAQ (http://www.cscmail.net/cscmail.faq) -CZ |
From: Tim S. <ti...@tc...> - 2000-09-08 04:11:43
|
I had the same problem. This is in the FAQ I think. You have to set the timezone manually in Manip.pm - or apparently get an updated version of Manip.pm which isn't even in CPAN. I chose the former, so I can't really comment on the latter. Worked for me. Torsten Mohr wrote: > > Hi, > > normally i use cscmail-1.61, my favorite mail tool. > > But now i have some problems, here's a list of what i did/what happened: > > - I updated to Perl-5.6.0 > - Some modules for cscmail were no longer available > - i reinstalled cscmail-1.61 > > Now cscmail starts, but when i now press the "Send & Receive"-Button, > there's a line on the console: > Can't ignore signal CHLD, forcing to default. > > When there's mail available i get something like: > ERROR: Date::Manip unable to determine TimeZone. > Date::Manip::Date_TimeZone called at /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 620 > Date::Manip::Date_Init() called at /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 738 > Date::Manip::ParseDateString('Thu, 7 Sep 2000 20:46:17 -0700') called > at /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 1655 > Date::Manip::UnixDate('Thu, 7 Sep 2000 20:46:17 -0700', '%s') called at > /usr/local/lib/cscmail/csclib.pl line 192 main::date_to_localdate('Thu, > 7 Sep 2000 20:46:17 -0700') called at /usr/local/lib/cscmail/csclib.pl line 382 > main::save_message('DBI::db=HASH(0x8623420)', 'Return-Path: > <csc...@li...>^JReceive...', 'HASH(0x81d2dc0)', > 'HASH(0x868e424)') called at /usr/local/lib/cscmail/csclib.pl line 490 > main::read_from_mbox('DBI::db=HASH(0x8623420)', 'HASH(0x81d2dc0)', > 'Gtk::Dialog=HASH(0x85a1c68)', 'HASH(0x868e424)', 2.349609375) called at > /usr/local/bin/cscget line 139 You have mail in /var/spool/mail/tmohr > > Can anybody help me with that? > > Best regards, > Torsten. > _______________________________________________ > | 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: Torsten M. <tmohr@s.netic.de> - 2000-09-08 04:00:28
|
Hi, normally i use cscmail-1.61, my favorite mail tool. But now i have some problems, here's a list of what i did/what happened: - I updated to Perl-5.6.0 - Some modules for cscmail were no longer available - i reinstalled cscmail-1.61 Now cscmail starts, but when i now press the "Send & Receive"-Button, there's a line on the console: Can't ignore signal CHLD, forcing to default. When there's mail available i get something like: ERROR: Date::Manip unable to determine TimeZone. Date::Manip::Date_TimeZone called at /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 620 Date::Manip::Date_Init() called at /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 738 Date::Manip::ParseDateString('Thu, 7 Sep 2000 20:46:17 -0700') called at /usr/local/lib/perl5/site_perl/5.6.0/Date/Manip.pm line 1655 Date::Manip::UnixDate('Thu, 7 Sep 2000 20:46:17 -0700', '%s') called at /usr/local/lib/cscmail/csclib.pl line 192 main::date_to_localdate('Thu, 7 Sep 2000 20:46:17 -0700') called at /usr/local/lib/cscmail/csclib.pl line 382 main::save_message('DBI::db=HASH(0x8623420)', 'Return-Path: <csc...@li...>^JReceive...', 'HASH(0x81d2dc0)', 'HASH(0x868e424)') called at /usr/local/lib/cscmail/csclib.pl line 490 main::read_from_mbox('DBI::db=HASH(0x8623420)', 'HASH(0x81d2dc0)', 'Gtk::Dialog=HASH(0x85a1c68)', 'HASH(0x868e424)', 2.349609375) called at /usr/local/bin/cscget line 139 You have mail in /var/spool/mail/tmohr Can anybody help me with that? Best regards, Torsten. |
From: Count Z. <cou...@cy...> - 2000-09-07 06:20:18
|
ra...@am... was overheard mumbling something about this on 06 Sep 2000 15:45:58 CST > I absolutely love CSC Mail. However, I am wondering if you cannot make > Address LIsts with it. I know you have an Address Book, but it would be > handy to have Address LIsts. I'm wondering if this option is available, > and I just don't know it. > Not precisely the way it will be in the future, but you CAN do address lists of a sort right now... Simply add a new entry to the address book like so: Alias: My List Address: add...@so..., add...@an..., add...@ye..., ... etc. You can pretty much put as many addresses as you like on the Address line, seperated by commas. Then, just use the "autocomplete" feature in the To: box... Type "My List" hit <TAB> and it will fill in all the addresses... -CZ |
From: <ra...@am...> - 2000-09-07 02:48:50
|
I absolutely love CSC Mail. However, I am wondering if you cannot make Address LIsts with it. I know you have an Address Book, but it would be handy to have Address LIsts. I'm wondering if this option is available, and I just don't know it. Ryan Ayers ra...@am... |
From: Daniel S. <np...@gm...> - 2000-09-04 20:56:52
|
Thanks. Unfortunately the autogen.sh script reported some strange errors. So I fetched the tarball from http://www.artofcode.com/libart.html (Version 2.3.3) Daniel Count Zero wrote: > Daniel Schregenberger was overheard mumbling something about this on > 04 Sep > 2000 14:51:42 CEST > > > Where can I find an actual version of libart? (required by cschtml) > > > > Thanks, Daniel > > You can get it from gnome's cvs server... > > export CVSROOT=":pserver:ano...@an...:/cvs/gnome" > cvs login > (hit enter when prompted for a password) > cvs co libart_lgpl > > That will leave you with a libart_lgpl directory that has the source > in it... > > cd libart_lgpl > ../autogen.sh > make > make install > > Also, there is a site on the web that has a tarball of libart_lgpl but > I > haven't found it recently... > > -CZ > _______________________________________________ > | 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: Count Z. <cou...@cy...> - 2000-09-04 18:23:41
|
Daniel Schregenberger was overheard mumbling something about this on 04 Sep 2000 14:51:42 CEST > Where can I find an actual version of libart? (required by cschtml) > > Thanks, Daniel You can get it from gnome's cvs server... export CVSROOT=":pserver:ano...@an...:/cvs/gnome" cvs login (hit enter when prompted for a password) cvs co libart_lgpl That will leave you with a libart_lgpl directory that has the source in it... cd libart_lgpl ./autogen.sh make make install Also, there is a site on the web that has a tarball of libart_lgpl but I haven't found it recently... -CZ |
From: Daniel S. <np...@gm...> - 2000-09-04 12:53:26
|
Where can I find an actual version of libart? (required by cschtml) Thanks, Daniel |
From: Count Z. <cou...@cy...> - 2000-08-31 16:05:30
|
Committed a fix to CSCMailInstaller.pl There were a series of typos in the GtkXmHTML installation routines that would cause the installer to crash if run on a system that didn't have gnome-perl previously installed. -CZ |