Hello everyone I am finally decommisioning the Cobalt Qube. :)
The Qube uses UW Imap. How will we move the messages from the users mailboxes to the new server? The new server uses UW as well. It is a Mitel SME 5.6 OS based on Linux 2.4. Adrian Jones > Send squirrelmail-users mailing list submissions to > [EMAIL PROTECTED] > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/squirrelmail-users > or, via email, send a message with subject or body 'help' to > [EMAIL PROTECTED] > > You can reach the person managing the list at > [EMAIL PROTECTED] > > When replying, please edit your Subject line so it is more specific than > "Re: Contents of squirrelmail-users digest..." > > > Today's Topics: > > 1. RE: pretty look??? (p dont think) > 2. RE: Removing original themes (p dont think) > 3. RE: Converting from file address books to mysql database > address books (Michael Blandford) > 4. archive question ([EMAIL PROTECTED]) > 5. Re: archive question (Jonathan Angliss) > 6. Re: pretty look??? (Pacho Baratta) > 7. No Frames (Adrian Jones) > 8. mail to all (Arun) > 9. FRUSTRATED (dbach) > 10. Re: FRUSTRATED (Chris Hilts) > 11. Re: SM and mailman (Chris Hilts) > 12. RE: SM won't let me send messages (Leonard, Phil) > > --__--__-- > > Message: 1 > From: "p dont think" <[EMAIL PROTECTED]> > To: "'Pacho Baratta'" <[EMAIL PROTECTED]>, > <[EMAIL PROTECTED]> > Subject: RE: [SM-USERS] pretty look??? > Date: Mon, 3 Feb 2003 17:56:14 -0800 > > Sorry to hear you think it's ugly. ;> > > In currently available versions, there are a number of color themes for > you to choose from (Options-->Display Settings) and a good plugin to get > is the Message Flags & Icons plugin: > > http://www.squirrelmail.org/plugin_view.php?id=91 > > I've seen a few people customize bits and pieces of their own SM > installations, but nothing has been standardized yet, except... one of > the next big development objectives for SM is to create a templating > system that will allow you to customize the look and feel to your > heart's content. Stay tuned, and read the SM wiki for more info: > > http://www.squirrelmail.org/wiki/SquirrelMail > > Cheers, > > paul > >> -----Original Message----- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED]] On Behalf Of > Pacho >> Baratta >> Sent: Monday, February 03, 2003 12:01 PM >> To: [EMAIL PROTECTED] >> Subject: [SM-USERS] pretty look??? >> >> well i'm checking out SM these days. i did install easily and it seems >> working so fine. >> just a question. >> did you know about some nice customization, with images and graphics > or >> should i do it by myself? >> by default SM is really ugly, isn't it? >> >> tnx anybody, pacho >> >> >> >> >> ------------------------------------------------------- >> This SF.NET email is sponsored by: >> SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >> http://www.vasoftware.com >> -- >> squirrelmail-users mailing list >> List Address: [EMAIL PROTECTED] >> List Archives: > http://sourceforge.net/mailarchive/forum.php?forum_id=2995 >> List Info: > https://lists.sourceforge.net/lists/listinfo/squirrelmail-users > > > > --__--__-- > > Message: 2 > From: "p dont think" <[EMAIL PROTECTED]> > To: "'Kevin Reed'" <[EMAIL PROTECTED]>, > <[EMAIL PROTECTED]> > Subject: RE: [SM-USERS] Removing original themes > Date: Mon, 3 Feb 2003 18:17:26 -0800 > > I'm not familiar enough with the admin plugin to tell you how it is > reconstructing that information, but it sounds like it might be getting > it out of a prefs file or somewhere in the config.php file. What may or > may not be easier to fix is to just remove the theme selection box on > the display options page so users don't have any way to change themes. > If you want, I can send you a modified version of the relevant file > (what version are you running?) > > - paul > > >> -----Original Message----- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED]] On Behalf Of > Kevin >> Reed >> Sent: Monday, February 03, 2003 12:22 PM >> To: [EMAIL PROTECTED] >> Subject: [SM-USERS] Removing original themes >> >> I see how you can add themes to the system, but removing them seems to >> require a change somewhere I can't find. >> >> I want to remove all but one theme from the system. >> >> I accomplished this with the .config/conf.pl utility. I ended up witn >> only the one theme that I wanted. >> >> However, as soon as I look at the system using the web administrator >> plugin while online, all the original themes are put back in. Where > it is >> getting that information from, I've not been able to figure out yet. >> >> I have physically removed those other themes from the ./themes > directory >> but it seems to still find the information from somewhere... >> >> -- >> Kevin >> >> >> >> >> >> ------------------------------------------------------- >> This SF.NET email is sponsored by: >> SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >> http://www.vasoftware.com >> -- >> squirrelmail-users mailing list >> List Address: [EMAIL PROTECTED] >> List Archives: > http://sourceforge.net/mailarchive/forum.php?forum_id=2995 >> List Info: > https://lists.sourceforge.net/lists/listinfo/squirrelmail-users > > > > --__--__-- > > Message: 3 > Date: Mon, 03 Feb 2003 19:31:47 -0700 > From: Michael Blandford <[EMAIL PROTECTED]> > Organization: The Blandford Clan > To: [EMAIL PROTECTED], [EMAIL PROTECTED] > Subject: RE: [SM-USERS] Converting from file address books to mysql > database > address books > > This is a multi-part message in MIME format. > --------------040402070609000106020704 > Content-Type: text/plain; charset=us-ascii; format=flowed > Content-Transfer-Encoding: 7bit > > Here is my script for converting from file prefs to database prefs. > > Michael > > --------------040402070609000106020704 > Content-Type: text/plain; > name="flat2sql.pl" > Content-Transfer-Encoding: 7bit > Content-Disposition: inline; > filename="flat2sql.pl" > > #!/usr/bin/perl > > # flat2sql.pl v1.0 > # > # Copyright (c) 2002, Michael Blandford and Tal Yardeni > > ##### Conf Section ##### > > $data_dir = "/var/www/html/mail/data"; > $db = "squirrelmail"; > $abook_table = "address"; > $pref_table = "userprefs"; > > ##### ##### ##### > > use Getopt::Long; > > &GetOptions( \%opts, qw( abook data_dir:s delete h help pref sig user:s > ) ); > > &Usage if ( defined $opts{h} or defined $opts{help} ); > > unless ( defined $opts{abook} or defined $opts{pref} or > defined $opts{sig}) { > $opts{abook}=TRUE; > $opts{pref}=TRUE; > $opts{sig}=TRUE; > } > > # Override the data directory if passed as an argument > $data_dir = $opts{data_dir} if ( defined $opts{data_dir} ); > > # Are we looking for specific users or all users? > # There has to be a better way to do this - Below > @user_list = split ( /,/, $opts{user} ) if defined $opts{user}; > > # Here we go > # If no arguments are passed, and we cant open the dir, we should > # get a usage. > opendir(DIR, $data_dir) or > die "DIRECTORY READ ERROR: Could not open $data_dir!!\n"; > > while ( $filename = readdir DIR ) { > next if ( $filename eq "." or $filename eq ".." ); > $filename =~ /(.*)\.(.*)/; > $username = $1; > > # Deal with the people > # There has to be a better way to do this - Above > next if ( defined $opts{user} and grep(!/$username/,@user_list)); > > # Deal with the extension files > $ext = $2; > next unless $ext; > &abook if ( $ext eq "abook" and defined $opts{abook} ); > &pref if ( $ext eq "pref" and defined $opts{pref} ); > &sig if ( $ext =~ /si([g\d])$/ and defined $opts{sig}); > } > closedir ( DIR ); > > # All done. Below are functions > > # Process a user address file > > sub abook { > print "DELETE FROM $db.$abook_table WHERE owner = '$username;\n" > if ( defined $opts{delete} ); > > open(ABOOK, ">$data_dir/$filename") or > die "FILE READ ERROR: Could not open $filename!!\n"; > > while (my $line = <ABOOK> ) { > > chomp $line; > my ( $nickname,$firstname,$lastname,$email,$label ) = split(/\|/, > $line); > > print "INSERT INTO $db.$abook_table " > . "(owner,nickname,firstname,lastname,email,label) " > . "VALUES ('$username','$nickname','$firstname','$lastname'," . > "'$email','$label');\n"; > } > > close(ABOOK); > } > > # Process a user prefernce file > > sub pref { > print "DELETE FROM $db.$pref_table " > . "WHERE user = '$username' and prefkey not like '___sig\%___';\n" > if ( defined $opts{delete} ); > > open(PREFS, "<$data_dir/$filename") or > die "FILE READ ERROR: Could not open $filename!!\n"; > > while (my $line = <PREFS> ) { > > chomp $line; > my ( $prefkey, $prefval ) = split(/=/, $line); > > print "INSERT INTO $db.$pref_table " > . "(user,prefkey,prefval) " > . "VALUES ('$username','$prefkey','$prefval');\n"; > > } > > close(PREFS); > } > > # Process a user sig file > > sub sig { > > $del_ext = $1; > $del_ext = "nature" if ( $del_ext eq "g" ); > print "DELETE FROM $db.$pref_table " > . "WHERE user = '$username' and prefkey like '___sig" . $del_ext . > "___';\n" > if ( defined $opts{delete} ); > > open(SIG, "<$data_dir/$filename") or > die "FILE READ ERROR: Could not open $filename!!\n"; > > my @lines = <SIG>; > close(SIG); > > $filename =~ /.*\.si([g,\d]$)/; > $prefkey = "___sig"; > if ( $1 eq "g" ) { > $prefkey .= "nature___"; > } else { > $prefkey .= "$1___"; > } > > > print "INSERT INTO $db.$sig_table (user,prefkey,prefval) " > . "VALUES ('$username','$prefkey','".join("",@lines)."');\n"; > } > > # Print out the usage screen > > sub Usage { > > $0 =~ /.*\/(.*)/; > $prog = $1; > print <<EOL; > This program generates SQL statements to aid importing squirrelmail > user config into a database. > > Usage: $prog [--delete] [--abook] [--pref] [--sig] [--data_dir=<>] > [--user=<username0[,username1[,username2]...]] > > Prefs --abook, --pref, and --sig are assumed if none of them as passed > > --delete removes all previous values for users ( --users=<> ) already in > the database. This is useful to reimport users. > It respects --abook, --pref, and --sig. > > If --user is not specified, it will try to do all users. > > EOL > exit 1; > } > > --------------040402070609000106020704-- > > > > --__--__-- > > Message: 4 > Date: Mon, 03 Feb 2003 21:45:32 -0500 > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: [SM-USERS] archive question > > Does anyone know how to access archived emails? If not, can someone at > least enlighten me on how to unsubscribe from this list? Seeing the > answers to everyone elses' questions but not mine makes me feel unloved. > > ;-) > > > --__--__-- > > Message: 5 > Date: Tue, 4 Feb 2003 00:16:39 -0600 (CST) > Subject: Re: [SM-USERS] archive question > From: "Jonathan Angliss" <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > >> Does anyone know how to access archived emails? If not, can someone at >> least enlighten me on how to unsubscribe from this list? Seeing the >> answers to everyone elses' questions but not mine makes me feel >> unloved. > > Look to the Website. There are details on the mailing lists there, > including archives on sourceforge (which are a little.. .slow, and > painful) and news duplicated archives on gmane.org > > -- > Jonathan Angliss > ([EMAIL PROTECTED]) > > > --__--__-- > > Message: 6 > From: "Pacho Baratta" <[EMAIL PROTECTED]> > To: "p dont think" <[EMAIL PROTECTED]>, > <[EMAIL PROTECTED]> > Subject: Re: [SM-USERS] pretty look??? > Date: Tue, 4 Feb 2003 08:22:01 +0100 > > don't mind what i think. it's cause in my beginning i was a designer, so > i always pay attention to how something looks. > anyway i'llo look at the wiki and will contribute if i can > regards, pacho > > > > ----- Original Message ----- > From: "p dont think" <[EMAIL PROTECTED]> > To: "'Pacho Baratta'" <[EMAIL PROTECTED]>; > <[EMAIL PROTECTED]> > Sent: Tuesday, February 04, 2003 2:56 AM > Subject: RE: [SM-USERS] pretty look??? > > >> Sorry to hear you think it's ugly. ;> >> >> In currently available versions, there are a number of color themes >> for you to choose from (Options-->Display Settings) and a good plugin >> to get is the Message Flags & Icons plugin: >> >> http://www.squirrelmail.org/plugin_view.php?id=91 >> >> I've seen a few people customize bits and pieces of their own SM >> installations, but nothing has been standardized yet, except... one >> of the next big development objectives for SM is to create a >> templating system that will allow you to customize the look and feel >> to your heart's content. Stay tuned, and read the SM wiki for more >> info: >> >> http://www.squirrelmail.org/wiki/SquirrelMail >> >> Cheers, >> >> paul >> >> > -----Original Message----- >> > From: [EMAIL PROTECTED] >> > [mailto:[EMAIL PROTECTED]] On Behalf Of >> Pacho >> > Baratta >> > Sent: Monday, February 03, 2003 12:01 PM >> > To: [EMAIL PROTECTED] >> > Subject: [SM-USERS] pretty look??? >> > >> > well i'm checking out SM these days. i did install easily and it >> seems working so fine. >> > just a question. >> > did you know about some nice customization, with images and graphics >> or >> > should i do it by myself? >> > by default SM is really ugly, isn't it? >> > >> > tnx anybody, pacho >> > >> > >> > >> > >> > ------------------------------------------------------- >> > This SF.NET email is sponsored by: >> > SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >> http://www.vasoftware.com >> > -- >> > squirrelmail-users mailing list >> > List Address: [EMAIL PROTECTED] >> > List Archives: >> http://sourceforge.net/mailarchive/forum.php?forum_id=2995 >> > List Info: >> https://lists.sourceforge.net/lists/listinfo/squirrelmail-users >> >> >> >> ------------------------------------------------------- >> This SF.NET email is sponsored by: >> SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >> http://www.vasoftware.com >> -- >> squirrelmail-users mailing list >> List Address: [EMAIL PROTECTED] >> List Archives: >> http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: >> https://lists.sourceforge.net/lists/listinfo/squirrelmail-users >> > > > > > --__--__-- > > Message: 7 > From: Adrian Jones <[EMAIL PROTECTED]> > Date: Tue, 4 Feb 2003 10:31:14 -0000 (GMT) > To: <[EMAIL PROTECTED]> > Subject: [SM-USERS] No Frames > > Hi there > > I have an Orange SPV smartphone, and it won't do frames. > > Has anyone seen a decent no frames approach to SM ? > > Adrian Jones > > > > > > > --__--__-- > > Message: 8 > From: Arun <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Date: 04 Feb 2003 17:53:44 +0530 > Subject: [SM-USERS] mail to all > > Dear Friends, > Is there any utility through which usr can send mail to all the local > user ??? > > Arun > > > > > > --__--__-- > > Message: 9 > From: "dbach" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Date: Tue, 4 Feb 2003 09:22:17 -0400 > Subject: [SM-USERS] FRUSTRATED > > This is a multi-part message in MIME format. > > ------=_NextPart_000_000E_01C2CC2E.E951A880 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: quoted-printable > > Hello All: > > I've been trying for weeks now and still can't even log into = > Squirrelmail. :( Kind of new to this so bear with me. :) I'm using = > FreeBSD 4.3-RELEASE, Squirrelmail-1.2.9, openldap-1.2.11_1, = > courier-imap-1.3.5_1 and apparently php-4.0.6, (even though downloaded = > the tarball for php4-4.2.3.tar.gz untarred it and typed ./configure = > --with-mysql --with-apxs=3D/usr/local/sbin/apxs then .configure = > --enable-track-vars --enable-force-cgi-redirect --with-gettext. I even > = did a chown nobody:nogroup squirrelmail and made the data directory > mode = 730. I copied the php.ini-dist file to my apache directory = > /usr/local/etc/apache and renamed it to php.ini and made sure = > session.use_cookies =3D 1 and session.auto_start =3D 1. Whew, now take a > = breath and when I point my browser to http://my.site.ca/mail2 I get > the = login screen then all I get is the following error message: > > Fatal error: Maximum execution time of 30 seconds exceeded in = > /usr/local/squirrelmail/functions/imap_general.php on line 49 > > If anyone has any suggestions I'd be REALLY interested to hear them. = > I've lost a lot of sleep over this and they want it setup yesterday at = > work. :( Should also mention my <? phpinfo(); ?> file shows php-4.0.6 = > as working.=20 > > Thanks a lot, BTW, the screencaptures look AWESOME, just wish I could = > make some!!! :) > > Darryl > ------=_NextPart_000_000E_01C2CC2E.E951A880 > 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> > <META http-equiv=3DContent-Type content=3D"text/html; = > charset=3Diso-8859-1"> > <META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR> > <STYLE></STYLE> > </HEAD> > <BODY bgColor=3D#ffffff> > <DIV><FONT face=3DArial size=3D2>Hello All:</FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2>I've been trying for weeks now and = > still can't even=20 > log into Squirrelmail. :( Kind of new to this so bear with me. = > :) =20 > I'm using FreeBSD 4.3-RELEASE, Squirrelmail-1.2.9, openldap-1.2.11_1,=20 > courier-imap-1.3.5_1 and apparently php-4.0.6, (even though downloaded = > the=20 > tarball for php4-4.2.3.tar.gz untarred it and typed ./configure = > --with-mysql=20 > --with-apxs=3D/usr/local/sbin/apxs then .configure > --enable-track-vars=20 --enable-force-cgi-redirect --with-gettext. > I even did a chown=20 nobody:nogroup squirrelmail and made the data > directory mode 730. = I copied=20 > the php.ini-dist file to my apache directory /usr/local/etc/apache and = > renamed=20 > it to php.ini and made sure session.use_cookies =3D 1 and = > session.auto_start =3D 1.=20 > Whew, now take a breath and when I point my browser to <A=20 > href=3D"http://my.site.ca/mail2">http://my.site.ca/mail2</A> I get the = > login=20 > screen then all I get is the following error message:</FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2>Fatal error: Maximum execution time of > = 30 seconds=20 > exceeded in /usr/local/squirrelmail/functions/imap_general.php on > line=20 49</FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2>If anyone has any suggestions I'd be = > REALLY=20 > interested to hear them. I've lost a lot of sleep over this and = > they want=20 > it setup yesterday at work. :( Should also mention my <? = > phpinfo();=20 > ?> file shows php-4.0.6 as working. </FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2>Thanks a lot, BTW, the screencaptures = > look AWESOME,=20 > just wish I could make some!!! :)</FONT></DIV> > <DIV><FONT face=3DArial size=3D2></FONT> </DIV> > <DIV><FONT face=3DArial size=3D2>Darryl</FONT></DIV></BODY></HTML> > > ------=_NextPart_000_000E_01C2CC2E.E951A880-- > > > > > --__--__-- > > Message: 10 > Date: Tue, 4 Feb 2003 09:17:00 -0500 (EST) > Subject: Re: [SM-USERS] FRUSTRATED > From: "Chris Hilts" <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Reply-To: [EMAIL PROTECTED] > >> and apparently php-4.0.6, (even though downloaded the tarball for >> php4-4.2.3.tar.gz untarred it and typed ./configure --with-mysql >> --with-apxs=/usr/local/sbin/apxs then .configure --enable-track-vars >> --enable-force-cgi-redirect --with-gettext. > > Ok, you configured, but did you actually BUILD php? (ie. did you do a > 'make'?) Methinks you need to re-check your installation docs. > >> copied the php.ini-dist file to my apache directory >> /usr/local/etc/apache and renamed it to php.ini and made sure >> session.use_cookies = 1 and session.auto_start = 1. > > This may be different on your m achine, but I don't think that's where > php.ini goes. Check the output of phpinfo() and find out which config > file is being read and where it is located. > >> Fatal error: Maximum execution time of 30 seconds exceeded in >> /usr/local/squirrelmail/functions/imap_general.php on line 49 > > What IMAP server are you using? Do you have an obscenely high number of > messages in your INBOX? Can you use server-side sorting (and if you > can, did you enable it in conf.pl?) > >> If anyone has any suggestions I'd be REALLY interested to hear them. >> I've lost a lot of sleep over this and they want it setup yesterday at >> work. :( >> Should also mention my <? phpinfo(); ?> file shows php-4.0.6 as >> working. > > If you still can't get it to work, post the relevant portions of your > apache config, your php config, and squirrelmail's config.php file. I'm > sure we can get it going. > > -- > Chris Hilts > [EMAIL PROTECTED] > > > --__--__-- > > Message: 11 > Date: Tue, 4 Feb 2003 09:34:35 -0500 (EST) > Subject: Re: [SM-USERS] SM and mailman > From: "Chris Hilts" <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Reply-To: [EMAIL PROTECTED] > >>>> Does anyone else on this list use mailman and squirrelmail? If so, >>>> how do >>>> you set up the server so all the messages show up as text in the >>>> text area >>>> instead of showing up as attachments? > > I assume you're talking about digests? > > Mailman has an option controlling the style of digest messages. I > forget the exact name of it, it's been a while since I toyed with > Mailman. Look for an option involving MIME. > > -- > Chris Hilts > [EMAIL PROTECTED] > > > --__--__-- > > Message: 12 > Subject: RE: [SM-USERS] SM won't let me send messages > Date: Tue, 4 Feb 2003 08:49:20 -0600 > From: "Leonard, Phil" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > > file_uploads was set to Off in php.ini. Changing it to On fixed the = > send mail problem. > > Thanks, Philip > > > > > > > --__--__-- > > -- > squirrelmail-users mailing list > List Address: [EMAIL PROTECTED] > List Info: > https://lists.sourceforge.net/lists/listinfo/squirrelmail-users > http://squirrelmail.org/cvs > > End of squirrelmail-users Digest ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users