RE: [SM-USERS] MySQL User Preferences Is Duplicating Entries
Well, never mind I figured it out After poking around db_prefs.php and echoing out the $query which ended up being a REPLACE statement I notice my table structure wasn't going to allow the REPLACE to work because my PRIMARY KEY was missing. All is working now. Mike -Original Message- From: Michael Shuler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 11:02 AM To: 'p dont think'; '[EMAIL PROTECTED]' Subject: RE: [SM-USERS] MySQL User Preferences Is Duplicating Entries I disabled all plugins and as you can see it still duplicated entries Initial Login mysql> select * from UserPrefs where user="[EMAIL PROTECTED]"; ++---+-+ | user | prefkey | prefval | ++---+-+ | [EMAIL PROTECTED] | javascript_on | 1 | | [EMAIL PROTECTED] | hililist | a:0:{} | ++---+-+ 2 rows in set (0.00 sec) Put in my name mysql> select * from UserPrefs where user="[EMAIL PROTECTED]"; ++---++ | user | prefkey | prefval| ++---++ | [EMAIL PROTECTED] | prefix_sig| 0 | | [EMAIL PROTECTED] | full_name | Michael Shuler | | [EMAIL PROTECTED] | javascript_on | 1 | | [EMAIL PROTECTED] | hililist | a:0:{} | ++---++ 4 rows in set (0.00 sec) Took my last name off mysql> select * from UserPrefs where user="[EMAIL PROTECTED]"; ++---++ | user | prefkey | prefval| ++---++ | [EMAIL PROTECTED] | full_name | Michael| | [EMAIL PROTECTED] | prefix_sig| 0 | | [EMAIL PROTECTED] | full_name | Michael Shuler | | [EMAIL PROTECTED] | javascript_on | 1 | | [EMAIL PROTECTED] | hililist | a:0:{} | ++---++ 5 rows in set (0.00 sec) -Original Message- From: p dont think [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 3:13 PM To: 'Michael Shuler'; [EMAIL PROTECTED] Subject: RE: [SM-USERS] MySQL User Preferences Is Duplicating Entries > I'm setting up Squirrel Mail 1.4.0 and so far it seems to work quite > nicely except for one thing. I have notice something that I think > might be a bug > or perhaps I have something configured incorrectly. It seems to insert > entries into the MySQL UserPrefs table rather than updating them. Here's > what I did to get it to duplicate entries: > > 1 -> Logged in as [EMAIL PROTECTED] which created the first 4 lines. > Then I did a select on the table, everything seemed ok except it > created 2 mailfetch_newlog entries, the first one being on and the > second one being > off. Seemed kind of strange so I tried some more stuff. > 2 -> Selected Options/Personal Information and then filled out simple info. > Looked at the table and everything looked OK with the exception of line 4 > still (the mailfetch_newlog off). > 3 -> Then I went back in under Options/Personal Information and turned off > my signature and changed it too. As you can see it left the old > ___signature___ and use_signature entries still in there. > > Here is a dump of the table after all of the above: > mysql> select * from UserPrefs; > ++--+---+ > | user | prefkey | prefval | > ++--+---+ > | [EMAIL PROTECTED] | mailfetch_newlog | on| > | [EMAIL PROTECTED] | javascript_on| 1 | > | [EMAIL PROTECTED] | hililist | a:0:{}| > | [EMAIL PROTECTED] | mailfetch_newlog | off | > | [EMAIL PROTECTED] | full_name| Michael Shuler| > | [EMAIL PROTECTED] | email_address| [EMAIL PROTECTED]| > | [EMAIL PROTECTED] | ___signature___ | Michael B. Shuler, C.E.O. | > | [EMAIL PROTECTED] | use_signature| 1 | > | [EMAIL PROTECTED] | prefix_sig | 1 | > | [EMAIL PROTECTED] | use_signature| 0 | > | [EMAIL PROTECTED] | ___signature___ | Michael B. Shuler | > ++--+---+ > 11 rows in set (0.00 sec) > > Here is also a list of my plugins just incase: > Installed Plugins > 1. abook_take > 2. squirrelspell > 3. calendar > 4. delete_move_next > 5. listcommands > 6. mail_fetch > 7. message_details > 8. newmail > 9. sent_subfolders > 10. translate > 11. sasql > 12. filters > 13. vlogin > 14. change_mysqlpass Please try disabling all plugins j
[SM-USERS] Courier IMAP SQM Setup
Help! I have installed the Qmail toaster from http://qmail.clikka.com and I don't want to use the cumbersome Horde webmail client. I want to use SquirrelMail! I have the latest PHP, MySQL, CourierIMAP, etc. I don't know how to configure SQM with Courier and maildir! Qmail admin uses MySQL to manage users etc, and maildir to store mail data. Can someone please point me to a good resource or give me a quick-and-dirty on how to get SQM working with the above config? Thanks in advance. Andrew [EMAIL PROTECTED] --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: [SM-USERS] Courier IMAP SQM Setup
Andrew, The specifics of your mail setup arn't altogether important as long as it complies with some sort of IMAP standards. The important part is that you are using Courier IMAP. Go into the SM configure menu.. 1. Select Option 2 2. Select Option A "Update IMAP Settings" 3. Fill in appropriate fields for your server. Be sure to select "courier" for the server software. 4. Hit "R" to return to main menu 5. From Main menu, hit "D" to "set pre-defined settings for IMAP server" That ought to do it.. Remember SM is simply a IMAP client. So it'll authenticate just like any other IMAP client out there (like outlook, etc..) So the specifcs of qmail, mysql, etc, etc, shouldn't matter unless you have to do something special with other IMAP clients. FYI, I'm using procmail, sendmail, and courier IMAP. So I don't know a lot about qmail so take my next few statements with a grain of salt. If anyone would like to correct me, please show me the light! :) I believe Qmail is a MTA (for sending mail). Be sure in the server settings option that you have "SMTP" selected for mail sending (I don't believe qmail is supported natively like sendmail). When checking mail, CourierIMAP will be doing the actual processing of the authentication. Probably via PAM. Although this all might be interesting, you shouldn't have to do anything specical to work with your authentication (providing that "normal" imap clients can send/recieve email..) -Brett > Help! > > I have installed the Qmail toaster from http://qmail.clikka.com and I > don't want to use the cumbersome Horde webmail client. I want to use > SquirrelMail! I have the latest PHP, MySQL, CourierIMAP, etc. I don't > know how to configure SQM with Courier and maildir! > > Qmail admin uses MySQL to manage users etc, and maildir to store mail > data. Can someone please point me to a good resource or give me a > quick-and-dirty on how to get SQM working with the above config? > > Thanks in advance. > Andrew > [EMAIL PROTECTED] > > > > --- > This SF.net email is sponsored by: eBay > Get office equipment for less on eBay! > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > -- > 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: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] Compliments and suggestions
We just upgraded to 1.4.0. Every version looks better and sharper. My compliments to the developers! I have a couple cosmetic suggestions for future releases. These are taken from comments from my own members. 1. The "Sign Out" on the top right of the page is hard to locate. I know that sounds silly, but simply making it the red color of the folders on the left helped tremendously. I also added the username (stripped of domain) after sign out, which is a nice touch. i.e. Sign Out: Chris 2. The "Move Selected To" and "Transform Select Messages" box would look better if it were located below the message list. It clutters the top of the screen and isn't used nearly as much as the message list itself is. 3. When reading a message, the most common thing people normally do is hit "reply". The "reply" link is well hidden in small text on the right. "Message List | Delete" should be moved to the right and "Forward | Forward as Attachment | Reply | Reply All" should be moved to the left. Then "Reply" and then "Reply All" should be the left-most options. We read from left to right, it make sense to put the most commonly used options left-most. 4. The "Last Updated" text under Folders is more geeky than useful. Most people want to see as little text as possible; they only want to see what is important. Who is going to actually compare the folder time with the current time? It takes less time to just hit refresh. Squirrelmail is hands-down the best webmail program out there! Christopher Davis Systems Administrator Family Voice Inc. [EMAIL PROTECTED] http://www.familyvoice.com --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] Images Have Been Removed From HTML E-Mail
Why does SquirrelMail replace images in HTML emails with "This image has been removed". Is there a way to override it so that the original image will be displayed? Michael Shuler --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] Images Have Been Removed From HTML E-Mail
Michael Shuler said: > Why does SquirrelMail replace images in HTML emails with "This image has > been removed". Is there a way to override it so that the original > image > will be displayed? FAQ's are wonderful things to read --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: [SM-USERS] Images Have Been Removed From HTML E-Mail
Hello Michael, On Thursday, May 29, 2003, Michael Shuler wrote... > Why does SquirrelMail replace images in HTML emails with "This image has > been removed". Is there a way to override it so that the original image > will be displayed? Is there something wrong with the archives, or website documentation? http://www.squirrelmail.org/wiki/en_US/UnsafeImages http://search.gmane.org/search.php?query=unsafe+images&group=gmane.mail.squirrelmail.user -- Jonathan Angliss ([EMAIL PROTECTED]) --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] How to use Outlook's personal contacts in Squirrelmail!
Hello, I've been searching for months to find a solution to be able to view Outlook personal contacts in Squirrelmail. For those of you in a similar situation, I found a kludge/ workaround. In Outlook, put each contacts email address in the notes field. Now, in squirrelmail, subscribe to the Contacts folder. When you click on Contacts, click on one of the entries in there. You will notice their email address in the "body" of the message. Click on this address, and it will compose a new email with that address in the To field. Kind of clunky, but no worse than it was in Outlook Web Access. -- Jody Cleveland ([EMAIL PROTECTED]) --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] New messages are going straight to Trash
Our staff have been seeing a small number of incoming messages move straight to the trash folder with no user intervention. I've seen this happen myself - heard it, even, because the Newmail pop-up window chokes on the sound file when it happens. Has anybody else experienced this? I seem to recall someone else mentioning this happening to them, some time back, but I can't find it in the archives. SM 1.2.12 from cvs, PHP 4.2.3 -- Bruce Those who cast the votes decide nothing. Those who count the votes decide everything. -- Joseph Stalin pgp0.pgp Description: PGP signature
[SM-USERS] Error
After users login. They receive the below error all the time. Any Ideas? Reccomendations? ERROR : Could not complete request. Unknown response from IMAP server: 1.* 1 EXISTS
Re: [SM-USERS] Import .address book ??
On Thu, May 29, 2003 at 04:52:28PM +0530, Subhash Chand spoke thusly: >how existing .address book in pine can import in Sm address. I cannot remember the Pine addressbook format anymore, but I think it was tab-delimited. So, simply write a short shell script to remove the tabs, and for all the entries write it out to SM format, which to my knowledge is like so : Nickname|First name|Last name|Email|Comment You might need to make some exceptions in place, especially when determining the first + last names. Ie : Mr. Horace Wilson Dr. Yankee Doodle Farmboy multiple args, and such will make it turn out uglier. But its merely cosmetics really. --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] view_as_html not working
I seem to be having with html email. Some messages view fine while other show as text. Any suggestions? I have downloaded and installed the latest version of the plugin. Kevin Plew Dad/webmaster Plewnet.com --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: Re[2]: [SM-USERS] Deleting other languages
Serge, Thanks for the tip, but I am not the one who needed it ;> Remember to cc: the mailing list. Cheers, paul >>> is it possible to disable the multilingual feature? So that every >>> user has the german locale _or_ the english? I don't need spanish, >>> french or >>> other languages... I moved the locales away, but in the listing >>> they're shown... > pdt> try taking them out of the config/config.php file > > functions/i18n.php - >> /* This array specifies the available languages. */ >> $languages['ca_ES']['NAME']= 'Catalan'; >> $languages['ca_ES']['CHARSET'] = 'iso-8859-1'; >> $languages['ca']['ALIAS'] = 'ca_ES'; >> >> $languages['cs_CZ']['NAME']= 'Czech'; >> $languages['cs_CZ']['CHARSET'] = 'iso-8859-2'; >> $languages['cs']['ALIAS'] = 'cs_CZ'; > ---.--- > > -- > Yours sincerely > Serge Leschinskymailto:[EMAIL PROTECTED] --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
RE: [SM-USERS] English & Japanese Languages
At 09:47 PM 5/24/2003, you wrote: Sorry for the delay in replying. >> >> On the Apache (2) side, this is probably being caused by > AddDefaultCharset >> in /etc/httpd/conf/httpd.conf. >> >> # >> # Specify a default charset for all pages sent out. This is >> # always a good idea and opens the door for future > internationalisation >> # of your web site, should you ever want it. Specifying it as >> # a default does little harm; as the standard dictates that a page >> # is in iso-8859-1 (latin1) unless specified otherwise i.e. you >> # are merely stating the obvious. There are also some security >> # reasons in browsers, related to javascript and URL parsing >> # which encourage you to always set a default char set. >> # >> AddDefaultCharset ISO-8859-1 >> >> This (default) setting is possibly nullifying the page output >> >> Content-Type text/html; charset="euc-jp" >> >> whereby it is being initially ignored by IE. >> >> (You may want to try playing around with the configuration there.) > > do you have any specific recommendations? I am usually one to try a whole set of solutions first and then comment on which ones which work for me, but since I have not done this here I hesitated to make any specific recommendations. I would try first commenting out the default AddDefaultCharset ISO-8859-1. If that fixes the problem without causing any new ones, then great. If this changes nothing then for fun I would try replacing ISO-8859-1 with EUC-JP and seeing if that at least helps on the Japanese side of things (even though it may upset other areas...). If it does sort out the Japanese initial charset problem, then it suggests to you that you may be able to solve the problem by conditionally changing the charsets (e.g. specifying them depending on the client browser.) Scott. Scott - I have the Japanese PC's now loading SM okay, by remarking out the AddDefaultCharset ISO-8859-1 command in httpd.conf. Thanks for that suggestion. Each Japanese user has changed their default language in SM Options to Japanese, as well. However, additional problems have arisen. When attempting to view a message in the in-box, it gives the following error: Fatal Error: Call to undefined function mb_detect_encoding() in /var/www/html/squirrelmail-1.4.0/functions/mime.php in line 339 And, when attempting to compose a new message, it gives the following error: Fatal Error: Call to undefined function mb_detect_encoding() in /var/www/html/squirrelmail-1.4.0/src/compose.php in line 1335 Since these lines follow an if statement checking for iso-2022-jp, I suspect this is related to the previous problem with in changing the default character set, but I'm not sure. Any suggestions on what the problem/solution might be? Thanks! Larry --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
RE: [SM-USERS] English & Japanese Languages
>> >> On the Apache (2) side, this is probably being caused by (B>> > AddDefaultCharset (B>> >> in /etc/httpd/conf/httpd.conf. (B>> >> (B>> >> # (B>> >> # Specify a default charset for all pages sent out. This is (B>> >> # always a good idea and opens the door for future (B>> > internationalisation (B>> >> # of your web site, should you ever want it. Specifying it as (B>> >> # a default does little harm; as the standard dictates that a page (B>> >> # is in iso-8859-1 (latin1) unless specified otherwise i.e. you (B>> >> # are merely stating the obvious. There are also some security (B>> >> # reasons in browsers, related to javascript and URL parsing (B>> >> # which encourage you to always set a default char set. (B>> >> # (B>> >> AddDefaultCharset ISO-8859-1 (B>> >> (B>> >> This (default) setting is possibly nullifying the page output (B>> >> (B>> >> Content-Type text/html; charset="euc-jp" (B>> >> (B>> >> whereby it is being initially ignored by IE. (B>> >> (B>> >> (You may want to try playing around with the configuration there.) (B>> > (B>> > do you have any specific recommendations? (B>> (B>>I am usually one to try a whole set of solutions first and then comment (B>> on (B>>which ones which work for me, but since I have not done this here I (B>>hesitated to make any specific recommendations. (B>> (B>>I would try first commenting out the default AddDefaultCharset (B>> ISO-8859-1. (B>>If that fixes the problem without causing any new ones, then great. If (B>>this changes nothing then for fun I would try replacing ISO-8859-1 with (B>>EUC-JP and seeing if that at least helps on the Japanese side of things (B>>(even though it may upset other areas...). If it does sort out the (B>>Japanese initial charset problem, then it suggests to you that you may be (B>>able to solve the problem by conditionally changing the charsets (e.g. (B>>specifying them depending on the client browser.) (B>> (B>>Scott. (B> (B> Scott - I have the Japanese PC's now loading SM okay, by remarking out the (B> AddDefaultCharset ISO-8859-1 command in httpd.conf. Thanks for that (B> suggestion. Each Japanese user has changed their default language in SM (B> Options to Japanese, as well. (B (BExcellent. I am glad to hear that that solved your problem. (Good guess!) (B (B> However, additional problems have arisen. When attempting to view a (B> message in the in-box, it gives the following error: (B> (B> Fatal Error: Call to undefined function mb_detect_encoding() in (B> /var/www/html/squirrelmail-1.4.0/functions/mime.php in line 339 (B> (B> And, when attempting to compose a new message, it gives the following (B> error: (B> (B> Fatal Error: Call to undefined function mb_detect_encoding() in (B> /var/www/html/squirrelmail-1.4.0/src/compose.php in line 1335 (B> (B> (B> Since these lines follow an if statement checking for iso-2022-jp, I (B> suspect this is related to the previous problem with in changing the (B> default character set, but I'm not sure. (B> (B> Any suggestions on what the problem/solution might be? (B (BYes. This is an easy one. (B (BThis is because the version of PHP you are using has not been built with (Bthe options required for multibyte/Japanese compatibility. (B (B> I have a Red Hat 9.0 system (B (BBingo! (B (BYou can download pre-configured binary rpms with the required options (Bincluded from my site (Masato Higashiyama and I provide these rpms as part (Bof our commercial support [which includes all sorts of good stuff] for (BSquirrelMail): (B (Bhttp://ftp.sanguine.net/pub/sahughes/rhl/RPMS/9/ (B (B(Don't forget to restart httpd after updating to these rpms.) (B (B> Thanks! (B> (B> Larry (B (BMy pleasure. Let me know how you go. (B (BCheers, (B (BScott. (B (B-- (B (B (B--- (BThis SF.net email is sponsored by: eBay (BGet office equipment for less on eBay! (Bhttp://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 (B-- (Bsquirrelmail-users mailing list (BList Address: [EMAIL PROTECTED] (BList Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 (BList Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] view_as_html not working
Which version of SquirrelMail are you using. 1.4.x believes the headers of the message, so if it's Content-Type="text/html" but there is no Mime-Version header then it doesn't pay attention to the Content-Type header. Content-Type is meaningless without a Mime-Version in almost all cases. Again, I'd need to know the SquirrelMail version and to see the message headers. Seth. Kevin Plew said: > I seem to be having with html email. Some messages view fine while other > show as text. Any suggestions? I have downloaded and installed the > latest version of the plugin. > Kevin Plew > Dad/webmaster > Plewnet.com > > > > > --- > This SF.net email is sponsored by: eBay > Get office equipment for less on eBay! > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > -- > 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 -- Seth Randall IT Support Specialist Missoula Federal Credit Union [EMAIL PROTECTED] --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] Re: Under Date heading comes time only ??
Dear Subhash, Did you observe all the mails in your mail box? SM is showing it in a better way, it shows current days messages with time, current weeks messages with day, time and all other messages with Date. Regards Praveen ---SOFTPRO DISCLAIMER-- Information contained in this E-MAIL and any attachments are confidential being proprietary to SOFTPRO SYSTEMS is 'privileged' and 'confidential'. If you are not an intended or authorised recipient of this E-MAIL or have received it in error, You are notified that any use, copyiny or dissemination of the information contained in this E-MAIL in any manner whatsoever is strictly prohibited. Please delete it immediately and notify the sender by E-MAIL. In such a case reading, reproducing, printing or further dissemination of this E-MAIL is strictly prohibited and may be unlawful. SOFTPRO SYSYTEMS does not REPRESENT or WARRANT that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this E-MAIL and any ATTACHEMENTS may be those of the author and are not necessarily those of SOFTPRO SYSTEMS. --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: [SM-USERS] Change of Welcome UserName, position
Thanks for your relies. I did in the following way instead of using User name plugin. I modified page_header.php file at line number 227. echo $username.' '; This will show user name just before the "Sign out" link. Like yahoo. Thank & Regards Praveen --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] Change of default addressbook
Dear List, I wanted to change my default address book from personal to global. My office addresses stored in LDAP. When I click on addresses link in SM it is showing my personal addresses by default, but I wanted to show my office addresses instead of personal. and also when I am using 'auto complete' plug in, it is giving only personal address book entries. Here also it should get the addresses from my global address book(office) How can I do that? Thanks & Regards Praveen --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
RE: [SM-USERS] English & Japanese Languages
At 11:47 PM 5/29/2003, Scott A. Hughes wrote: > Scott - I have the Japanese PC's now loading SM okay, by remarking out the > AddDefaultCharset ISO-8859-1 command in httpd.conf. Thanks for that > suggestion. Each Japanese user has changed their default language in SM > Options to Japanese, as well. Excellent. I am glad to hear that that solved your problem. (Good guess!) > However, additional problems have arisen. When attempting to view a > message in the in-box, it gives the following error: > > Fatal Error: Call to undefined function mb_detect_encoding() in > /var/www/html/squirrelmail-1.4.0/functions/mime.php in line 339 > > And, when attempting to compose a new message, it gives the following > error: > > Fatal Error: Call to undefined function mb_detect_encoding() in > /var/www/html/squirrelmail-1.4.0/src/compose.php in line 1335 > > > Since these lines follow an if statement checking for iso-2022-jp, I > suspect this is related to the previous problem with in changing the > default character set, but I'm not sure. > > Any suggestions on what the problem/solution might be? Yes. This is an easy one. This is because the version of PHP you are using has not been built with the options required for multibyte/Japanese compatibility. > I have a Red Hat 9.0 system Bingo! You can download pre-configured binary rpms with the required options included from my site (Masato Higashiyama and I provide these rpms as part of our commercial support [which includes all sorts of good stuff] for SquirrelMail): http://ftp.sanguine.net/pub/sahughes/rhl/RPMS/9/ (Don't forget to restart httpd after updating to these rpms.) > Thanks! > > Larry My pleasure. Let me know how you go. Thanks, again! I installed the modules, and tested them with my PC using Japanese (EUC) encoding, and it seemed to work. I'll test them tomorrow with the Japanese PC's and see what happens. I seem to have broken php-accelerator (gives a "No shm_user is set and so no shm cache will be created" error when loading httpd), but I can probably live with that for a while until I have time to resolve the problem with it. I noticed that you have a postfix-2.0.9-2_rh9.i386.rpm on your site -- is that compiled with any special functions/features? I'm presently running postfix-2.0.10-1.rh9, but it is a standard install. Cheers, Have a good day! Larry Scott. --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] Re: Change of Welcome UserName, position
Praveen wrote: >Thanks for your relies. I did in the following way instead of using >User name plugin. I modified page_header.php file at line number 227. >echo $username.' '; >This will show user name just before the "Sign out" link. Like yahoo. What version of Squirrelmail did you apply this ? In Squirrelmail-1.4.0 it wont worked. There is one variable must be add to page_header.php before you insert those $username variable (: I ve succeed adding username in the left side of curent folder, but perhaps a litle bit to the right, before sign out would be nice just as praveen said.. Regards, Rio Martin. --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
RE: [SM-USERS] English & Japanese Languages
> At 11:47 PM 5/29/2003, Scott A. Hughes wrote: (B> (B>> > Scott - I have the Japanese PC's now loading SM okay, by remarking out (B>> the (B>> > AddDefaultCharset ISO-8859-1 command in httpd.conf. Thanks for that (B>> > suggestion. Each Japanese user has changed their default language in (B>> SM (B>> > Options to Japanese, as well. (B>> (B>>Excellent. I am glad to hear that that solved your problem. (Good guess!) (B>> (B>> > However, additional problems have arisen. When attempting to view a (B>> > message in the in-box, it gives the following error: (B>> > (B>> > Fatal Error: Call to undefined function mb_detect_encoding() in (B>> > /var/www/html/squirrelmail-1.4.0/functions/mime.php in line 339 (B>> > (B>> > And, when attempting to compose a new message, it gives the following (B>> > error: (B>> > (B>> > Fatal Error: Call to undefined function mb_detect_encoding() in (B>> > /var/www/html/squirrelmail-1.4.0/src/compose.php in line 1335 (B>> > (B>> > (B>> > Since these lines follow an if statement checking for iso-2022-jp, I (B>> > suspect this is related to the previous problem with in changing the (B>> > default character set, but I'm not sure. (B>> > (B>> > Any suggestions on what the problem/solution might be? (B>> (B>>Yes. This is an easy one. (B>> (B>>This is because the version of PHP you are using has not been built with (B>>the options required for multibyte/Japanese compatibility. (B>> (B>> > I have a Red Hat 9.0 system (B>> (B>>Bingo! (B>> (B>>You can download pre-configured binary rpms with the required options (B>>included from my site (Masato Higashiyama and I provide these rpms as (B>> part (B>>of our commercial support [which includes all sorts of good stuff] for (B>>SquirrelMail): (B>> (B>>http://ftp.sanguine.net/pub/sahughes/rhl/RPMS/9/ (B>> (B>>(Don't forget to restart httpd after updating to these rpms.) (B>> (B>> > Thanks! (B>> > (B>> > Larry (B>> (B>>My pleasure. Let me know how you go. (B> (B> Thanks, again! I installed the modules, and tested them with my PC using (B> Japanese (EUC) encoding, and it seemed to work. I'll test them tomorrow (B> with the Japanese PC's and see what happens. (B (BI don't think you will have any problems there anymore. (B (B> I seem to have broken php-accelerator (gives a "No shm_user is set and so (B> no shm cache will be created" error when loading httpd), but I can (B> probably live with that for a while until I have time to resolve the (B> problem with it. (B (BI will leave that one with you to work on... (B (B> I noticed that you have a postfix-2.0.9-2_rh9.i386.rpm on your site -- is (B> that compiled with any special functions/features? I'm presently running (B> postfix-2.0.10-1.rh9, but it is a standard install. (B (BIt looks like you have one of Simon J Mudd's (excellent) Postfix rpms. I (Bam also a mirror for him. (B (Bhttp://ftp.sanguine.net/pub/postfix/ (B (BThe postfix-2.0.9-2_rh9.i386.rpm in my directory is merely Simon's rpm (Brebuild with pcre support for my own purposes. I also have the release (Bname changed slightly (.rh9 -> _rh9) according to the naming scheme for my (Bcustom rpms. (B (BI am glad that we could get the problems sorted out with SquirrelMail, the (Bbest webmail software in the world. (B (BCheers Larry. (B (BScott. (B (B-- (B (B (B--- (BThis SF.net email is sponsored by: eBay (BGet office equipment for less on eBay! (Bhttp://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 (B-- (Bsquirrelmail-users mailing list (BList Address: [EMAIL PROTECTED] (BList Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 (BList Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
[SM-USERS] Changing the way Squirrel reply message..
Dear all, I would like to know how to change the way squirrel reply to message. As you all see that squirrel only show quotes, but didnt show some of sender information like email addresses, or date.. Anyone knows how to deal with this ? Regards, Rio Martin. --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: [SM-USERS] Re: Under Date heading comes time only ??
The behaviour is to show the time only for mails under a day old. Then after that the Weekday then after a week the date. I don't know whose behaviour is this but this is what I have observed. > Dear Subhash, > Did you observe all the mails in your mail box? SM is > showing it > in a better way, it shows current days messages with time, > current weeks messages with day, time and all other messages > with Date. > > Regards > Praveen > > > > ---SOFTPRO > DISCLAIMER-- > > Information contained in this E-MAIL and any attachments are > confidential being proprietary to SOFTPRO SYSTEMS is > 'privileged' and 'confidential'. > > If you are not an intended or authorised recipient of this > E-MAIL or have received it in error, You are notified that > any use, copyiny or dissemination of the information > contained in this E-MAIL in any > manner whatsoever is strictly prohibited. Please delete it > immediately and notify the sender by E-MAIL. > > In such a case reading, reproducing, printing or further > dissemination of this E-MAIL is strictly prohibited and may > be unlawful. > > SOFTPRO SYSYTEMS does not REPRESENT or WARRANT that an > attachment > hereto is free from computer viruses or other defects. > > The opinions expressed in this E-MAIL and any ATTACHEMENTS > may be > those of the author and are not necessarily those of SOFTPRO > SYSTEMS. > > > > --- > This SF.net email is sponsored by: eBay > Get office equipment for less on eBay! > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > -- > 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 Warm Regards, DOODS Get your free webmail account from GlobeLines now! Visit http://www.glinesnx.com.ph --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] mcrypt failure
I am wondering if anyone else has seen this. I am using squirrelmail-1.2.9 with vmailmgr and the vadmin plugin with libmcrypt. Whenever I try to log into the Admin plugin I get these errors: Warning: mcrypt_module_open(): Could not open encryption module in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 299 Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 300 Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 300 Warning: mcrypt_generic(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 304 Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 310 Warning: mcrypt_module_open(): Could not open encryption module in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 299 Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 300 Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 300 Warning: mcrypt_generic(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 304 Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 310 Warning: mcrypt_module_open(): Could not open encryption module in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 299 Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 300 Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 300 Warning: mcrypt_generic(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 304 Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt resource in /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc on line 310 Any help would be very appreciated, -- Jon Reynolds <[EMAIL PROTECTED]> --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] cant download attachment
Hi, I have a SM 1.4 on a Mandrake 9.1 It works fine except when try to download attachments from the mail. When the size bigger than 1M I receive "Action canceled" page in my php.ini file "upload_max_filesize = 2M" "file_uploads = On" "register_globals = On" any comments is welcome Y.C --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: [SM-USERS] mcrypt failure
Nevermind. It was my mistake and I fond it. On Fri, 2003-05-30 at 01:16, Jon Reynolds wrote: > I am wondering if anyone else has seen this. I am using > squirrelmail-1.2.9 with vmailmgr and the vadmin plugin with libmcrypt. > Whenever I try to log into the Admin plugin I get these errors: > > Warning: mcrypt_module_open(): Could not open encryption module in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 299 > > Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid > MCrypt resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 300 > > Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller > in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 300 > > Warning: mcrypt_generic(): supplied argument is not a valid MCrypt > resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 304 > > Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt > resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 310 > > Warning: mcrypt_module_open(): Could not open encryption module in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 299 > > Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid > MCrypt resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 300 > > Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller > in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 300 > > Warning: mcrypt_generic(): supplied argument is not a valid MCrypt > resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 304 > > Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt > resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 310 > > Warning: mcrypt_module_open(): Could not open encryption module in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 299 > > Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid > MCrypt resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 300 > > Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller > in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 300 > > Warning: mcrypt_generic(): supplied argument is not a valid MCrypt > resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 304 > > Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt > resource in > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > on line 310 > > Any help would be very appreciated, -- Jon Reynolds <[EMAIL PROTECTED]> --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
[SM-USERS] view_as_html not working
I'm using 1.4. This is an example of a message that appears as text. Header** Return-Path: <[EMAIL PROTECTED]> Received: from bart.plewnet.com (bart.plewnet.com [192.168.69.1]) by homer.plewnet.com (8.11.6/8.11.6) with ESMTP id h4THEr510774 for <[EMAIL PROTECTED]>; Thu, 29 May 2003 13:14:53 -0400 Received: from nyt380.lga2.nytimes.com (content119b.lga2.nytimes.com [199.239.138.72]) by bart.plewnet.com (8.11.6/8.11.6) with ESMTP id h4THbLC05948 for <[EMAIL PROTECTED]>; Thu, 29 May 2003 13:37:22 -0400 Message-Id: <[EMAIL PROTECTED]> Received: from annuncio1.lga2.nytimes.com (172.16.0.124) by nyt380.lga2.nytimes.com (LSMTP for Windows NT v1.1b) with SMTP id <[EMAIL PROTECTED]>; Thu, 29 May 2003 13:14:44 -0400 To: [EMAIL PROTECTED] Subject: Circuits: DVR Myths and Facts From: "The New York Times Direct" <[EMAIL PROTECTED]> Date: Thu, 29 May 2003 13:14:41 -0500 Reply-To: "The New York Times Direct" <[EMAIL PROTECTED]> Content-Type: text/html Content-Transfer-Encoding: 7bit Header end* Message begin http://www.w3.org/TR/REC-html40/strict.dtd";> NYTimes HTML E-Mail http://www.nytimes.com";>http://www.nytimes.com/images/email/circuits/circuitsflag.jpg"; WIDTH="600" height="40" HSPACE="0" VSPACE="0" BORDER="0" ALIGN="left"> Search NYTimes.com Today's News Past Week Past 30 Days Past 90 Days Past Year Since 1996 http://graphics.nytimes.com/images/global/global_search/gs_submit.gif"; width="18" height="19" border="0" alt="submit" align="top"> http://graphics.nytimes.com/images/misc/spacer.gif"; WIDTH="1" HEIGHT="7" HSPACE="0" VSPACE="0" BORDER="0" ALIGN="left"> http://www.nytimes.com/adx/bin/adx_click.html?type=goto&page=email.nytimes.com/circuits/html&pos=Position1&camp=ci-circulation1&ad=circ468.gif&goto=https%3A%2F%2Fsecure%2Dhomedelivery%2Enytimes%2Ecom%2Fcgi%2Dbin%2Fgx%2Ecgi%2FAppLogic%2BFTContentServer%3Fpagename%3Duser%252FContentMgt%252FPromoFeature%252FPromoFeatureT1P%26ExternalMediaCode%3DW11FP"; target="_blank">http://graphics7.nytimes.com/adx/images/ci-circulation1/circ468.gif"; BORDER=0 > http://www.nytimes.com/email";>http://www.nytimes.com/images/email/wine/unsubscribe.gif"; ALT="Customize This E-Mail" WIDTH="122" HEIGHT="19" HSPACE="0" VSPACE="0" BORDER="0" ALIGN="left"> http://www.nytimes.com/email";>http://www.nytimes.com/images/email/wine/nytnewsletters.gif"; WIDTH="122" HEIGHT="18" HSPACE="0" VSPACE="0" BORDER="0" ALIGN="LEFT"> http://www.nytimes.com/email";>http://www.nytimes.com/images/email/wine/textversion.gif"; ALT="Customize This E-Mail" WIDTH="122" HEIGHT="19" HSPACE="0" VSPACE="0" BORDER="0" ALIGN="left"> IN THIS E-MAIL • This Week in Circuits: Home Schooling in Cyberspace • The Gavel & Mouse: Electronic Order in the Court • State of the Art: For TiVo and Replay, New Reach • How It Works: Three-Dimensional Printing • Online Shopper: Outfitting Summer Campers • What's Next: Analog Over Digital for a Better Ear Implant • Security: Enlisting the Young as White-Hat Hackers • Game Theory: From Hot Rods to Racehorses, It's All in the Bonding http://graphics7.nytimes.com/ads/images/misc/pennants/didyouknow.gif"; width=184 border=0> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=1> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=5> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=172> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=5> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=1> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=1> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=5> By signing up for the DriveTimes newsletter you will receive a weekly compendium of automotive reviews and industry news, and be entered to win a Skip Barber Three Day Racing School course. http://www.nytimes.com/mem/drivetimes.html";>Click here to enter now! http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=5> http://graphics7.nytimes.com/ads/images/misc/spacer.gif"; width=1> http://graphics.nytimes.com/ads/images/misc/spacer.gif"; width=184> Thursday, May 29, 2003 http://graphics.nytimes.com/images/email/circuits/fromdeskof3.jpg"; WIDTH="380" HEIGHT="60" HSPACE="0" VSPACE="0" BORDER="0"> DVR Myths and Facts If you hadn't guessed from my coverage in Circuits (like today's column) or in this newsletter, I'm a huge, raving,
RE: [SM-USERS] Change of Welcome UserName, position
If you can enable error reporting and post the errors you get, I can probably track down the problem. > -Original Message- > From: [EMAIL PROTECTED] [mailto:squirrelmail- > [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] > Sent: Thursday, May 29, 2003 4:24 AM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: [SM-USERS] Change of Welcome UserName, position > > > Praveen - You can also try the Username plugin, which puts the username > > above/below the folder list in the left frame. > > On our system (SM 1.2.12 [cvs], Username 2.0, Win32), the Username > Display plugin breaks the Display Preferences page, making it fail when > you click on Submit. I've been too busy to find out why, though. > > -- > Bruce > > > --- > This SF.net email is sponsored by: eBay > Get office equipment for less on eBay! > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > -- > 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: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
RE: [SM-USERS] Under Date heading comes time only (Email) ??
> is there any option where under Date heading comes date with time in email. can you restate your question? I don't quite understand, but it sounds like you're asking to see the time in the message list? there's not an option for that... although you do see the time when you read the message itself. and you also see the time in the message list when the message is less than a day old. --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
RE: [SM-USERS] Import .address book ??
> >how existing .address book in pine can import in Sm address. > > I cannot remember the Pine addressbook format anymore, but I think it was > tab-delimited. So, simply write a short shell script to remove the tabs, > and for all the entries write it out to SM format, which to my knowledge > is > like so : > > Nickname|First name|Last name|Email|Comment > > You might need to make some exceptions in place, especially when > determining the first + last names. Ie : > > Mr. Horace Wilson > Dr. Yankee Doodle Farmboy > > multiple args, and such will make it turn out uglier. But its merely > cosmetics really. or if you don't want to figure out SM's format, and Pine is in fact tab-delimited, just write a script to replace tabs with commas and run the resulting file through the Address book import/export plugin as a CSV file. - paul --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
RE: [SM-USERS] Unable to log-in
(please try not to post HTML messages to the mailing list if possible, thx) > I have squirrelmail set up on an OSX 10.2.6 server. I can call up the log-in page @ > http://www.craneschool.org/mail, but when I try to log-in, I get an error message > I'm assuming that squirrelmail uses the users and password setup in Workgroup managers. > Any help is appreciated. no, it uses IMAP usernames/passwords for everything. please make sure your IMAP settings are correct and use the email usernames and passwords you already set up for your IMAP server to log in. If you have any more problems, please include version numbers for SquirrelMail, PHP, etc. as well as specific error messages, otherwise it is very hard for anyone to know what problem you are actually facing. Thanks, paul --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
RE: [SM-USERS] mcrypt failure
Please, for the sake of completeness on the mailing list, give us a brief summary of how you fixed the problem. There will be people in the future who will be grateful. Thanks, Paul > Nevermind. It was my mistake and I fond it. > > On Fri, 2003-05-30 at 01:16, Jon Reynolds wrote: > > I am wondering if anyone else has seen this. I am using > > squirrelmail-1.2.9 with vmailmgr and the vadmin plugin with libmcrypt. > > Whenever I try to log into the Admin plugin I get these errors: > > > > Warning: mcrypt_module_open(): Could not open encryption module in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 299 > > > > Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid > > MCrypt resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 300 > > > > Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller > > in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 300 > > > > Warning: mcrypt_generic(): supplied argument is not a valid MCrypt > > resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 304 > > > > Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt > > resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 310 > > > > Warning: mcrypt_module_open(): Could not open encryption module in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 299 > > > > Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid > > MCrypt resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 300 > > > > Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller > > in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 300 > > > > Warning: mcrypt_generic(): supplied argument is not a valid MCrypt > > resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 304 > > > > Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt > > resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 310 > > > > Warning: mcrypt_module_open(): Could not open encryption module in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 299 > > > > Warning: mcrypt_enc_get_iv_size(): supplied argument is not a valid > > MCrypt resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 300 > > > > Warning: mcrypt_create_iv(): Can not create an IV with size 0 or smaller > > in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 300 > > > > Warning: mcrypt_generic(): supplied argument is not a valid MCrypt > > resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 304 > > > > Warning: mcrypt_generic_end(): supplied argument is not a valid MCrypt > > resource in > > /var/www/squirrelmail-1.2.9/plugins/vadmin/includes/vadmin_functions.inc > > on line 310 > > > > Any help would be very appreciated, > -- > Jon Reynolds <[EMAIL PROTECTED]> > > > > --- > This SF.net email is sponsored by: eBay > Get office equipment for less on eBay! > http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 > -- > 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: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: [SM-USERS] Change of Welcome UserName, position
[EMAIL PROTECTED] wrote: > Thanks for your relies. I did in the following way instead of using > User name plugin. I modified page_header.php file at line number 227. > echo $username.' '; > This will show user name just before the "Sign out" link. Like yahoo. > what kind of version do you applied this? in SM-1.4.0, didnt worked.. anyone else want to help modifiy User Identification for page_header.php? Regards, Rio Martin. --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- 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
Re: [SM-USERS] view_as_html not working
Notice, no Mime-Version header. Without this, 1.4 doesn't consider it real HTML. Standards compliance is the reason given by the developers. I tried hacking the code to no result. I also tried getting the sender, CBS Marketwatch, to clean up their act. Same result. So I hacked the messages. I am using Maildrop on Linux to sort mail into folders and if a message is from one of the affected senders and the Content-Type is text/html, it inserts a "Mime-Version: 1.0" header with reformail. Procmail and reformail would also work. E-mail me off-list if you need more detail. HTH, Jeffrey > I'm using 1.4. This is an example of a message that appears as text. > Header** > Return-Path: <[EMAIL PROTECTED]> > Received: from bart.plewnet.com (bart.plewnet.com [192.168.69.1]) > by homer.plewnet.com (8.11.6/8.11.6) with ESMTP id h4THEr510774 for > <[EMAIL PROTECTED]>; Thu, 29 May 2003 13:14:53 -0400 > Received: from nyt380.lga2.nytimes.com (content119b.lga2.nytimes.com > [199.239.138.72]) > by bart.plewnet.com (8.11.6/8.11.6) with ESMTP id h4THbLC05948 for > <[EMAIL PROTECTED]>; Thu, 29 May 2003 13:37:22 -0400 > Message-Id: <[EMAIL PROTECTED]> > Received: from annuncio1.lga2.nytimes.com (172.16.0.124) by > nyt380.lga2.nytimes.com (LSMTP for Windows NT v1.1b) with SMTP id > <[EMAIL PROTECTED]>; Thu, 29 May 2003 13:14:44 -0400 > To: [EMAIL PROTECTED] > Subject: Circuits: DVR Myths and Facts > From: "The New York Times Direct" <[EMAIL PROTECTED]> > Date: Thu, 29 May 2003 13:14:41 -0500 > Reply-To: "The New York Times Direct" <[EMAIL PROTECTED]> > Content-Type: text/html > Content-Transfer-Encoding: 7bit > Header > end* > Message > begin --- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users