[SM-USERS] 'message flags & icons' tweak
Hi, I recently installed the 'Message Flags & Icons' SquirrelMail plugin, in order to be able to flag emails. I was expecting something along the lines of what you get in Gmail - which has a perfect implementation in my opinion. SquirrelMail's implementation is essentially useless for me, because there is no 'Flagged' link/folder (in the left-hand menu) that I can click on to view all flagged emails. As far as I can see, the only way to find flagged emails is to physically look through every single email and notice that it is marked as being flagged. The other great advantage Gmail has is the ability to simply click on the star next to every email, and this *instantly* flags an email, right then and there. You can also unflag it immediately through the same method. Is there any chance of improving flagging in this plugin? Otherwise I think I may have to switch to Gmail because this feature is so important to me. Thanks very much -- Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC base & get more eyes on your game by optimizing for Intel(R) Graphics Technology. Get started today with the Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs. http://p.sf.net/sfu/intelisp-dev2dev- squirrelmail-users mailing list Posting guidelines: http://squirrelmail.org/postingguidelines List address: squirrelmail-users@lists.sourceforge.net List archives: http://news.gmane.org/gmane.mail.squirrelmail.user List info (subscribe/unsubscribe/change options): https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
[SM-USERS] Page 'hangs' when sending message from compose page
Good evening, I have a problem that sounds exactly like the recent message with the subject "Problem when sending an email - update". But making the suggested changes has not fixed the problem. <http://article.gmane.org/gmane.mail.squirrelmail.user/24934> In effect, I commented the following code from functions/strings.php: /* if (! strstr($host, ':')) { if (sqgetGlobalVar('SERVER_PORT', $server_port, SQ_SERVER)) { if (($server_port != 80 && $proto == 'http://') || ($server_port != 443 && $proto == 'https://')) { $port = sprintf(':%d', $server_port); } } } */ I am using: SM 1.4.3a RHEL v3 Apache/1.3.29 PHP Version 4.3.4 I didn't do the initial installation so I'm not sure which IMAP server is being used and I don't know if there are additional plugins installed. (How do I find out?) There is a 'frontend' apache server which proxies requests to a 'backend' apache/php server. When I click 'send' from the 'compose' page, I get a browser timeout with an error message such as (port number changed to xxx): Temporarily unable to connect to 202.51.168.70:xxx: Operation timed out The xxx port number is the one used by the backend PHP server. How do I keep SM from using that port number and just using port 80 (or no custom port number)? Thanks, Charlie -- Charlie Garrison <[EMAIL PROTECTED]> PO Box 141, Windsor, NSW 2756, Australia --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
[SM-USERS] Page 'hangs' when sending message from compose page
Good evening, I have a problem that sounds exactly like the recent message with the subject "Problem when sending an email - update". But making the suggested changes has not fixed the problem. <http://article.gmane.org/gmane.mail.squirrelmail.user/24934> In effect, I commented the following code from functions/strings.php: /* if (! strstr($host, ':')) { if (sqgetGlobalVar('SERVER_PORT', $server_port, SQ_SERVER)) { if (($server_port != 80 && $proto == 'http://') || ($server_port != 443 && $proto == 'https://')) { $port = sprintf(':%d', $server_port); } } } */ I am using: SM 1.4.3a RHEL v3 Apache/1.3.29 PHP Version 4.3.4 I didn't do the initial installation so I'm not sure which IMAP server is being used and I don't know if there are additional plugins installed. (How do I find out?) There is a 'frontend' apache server which proxies requests to a 'backend' apache/php server. When I click 'send' from the 'compose' page, I get a browser timeout with an error message such as (port number changed to xxx): Temporarily unable to connect to 202.51.168.70:xxx: Operation timed out The xxx port number is the one used by the backend PHP server. How do I keep SM from using that port number and just using port 80 (or no custom port number)? Thanks, Charlie -- Charlie Garrison <[EMAIL PROTECTED]> PO Box 141, Windsor, NSW 2756, Australia --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] Page 'hangs' when sending message from compose page
Good morning, On 19/8/05 at 10:40 AM -0500, Jonathan Angliss <[EMAIL PROTECTED]> wrote: >Hello Charlie Garrison, >On Thursday, August 18, 2005, you wrote: > >> There is a 'frontend' apache server which proxies requests to a 'backend' >> apache/php server. > >> When I click 'send' from the 'compose' page, I get a browser timeout with an >> error message such as (port number changed to xxx): > >> Temporarily unable to connect to 202.51.168.70:xxx: Operation timed out > >> The xxx port number is the one used by the backend PHP server. How >> do I keep SM from using that port number and just using port 80 (or >> no custom port number)? > >Did you logout, and back in again? The values from that function are >stored in the session so it's only ran once. Instead of commenting it Yes, I logged out and deleted browser cookies. I also tested from another computer/browser with the same problem. >out, have you tried setting a value for the host/port. Around line >257 of strings.php you should see $full_url = ( Try commenting out >that line, and putting: > >$full_url = 'http://www.yourdomain.tld'; I ended up doing a preg_replace on $full_url to get rid of the port number and that has fixed the problem. (And learning to convert perl skills to php along the way.) So my concern now is losing those changes (& forgetting about them) when I next do an update of squirrelmail. I'd like to submit a patch or suggest a change for future versions. Should I take that to the squirrelmail-dev list? I haven't spent much time in the SM code so I'm not sure whether there should be a global variable to set whether the port number should be used. I was thinking something along these lines: $use_virthost_port= 1; #default - use port number from full_url $use_virthost_port= 0; #strip the port number from full_url $use_virthost_port= 8080; #change the port number in full_url And then update get_location to react accordingly. Thanks, Charlie -- Charlie Garrison <[EMAIL PROTECTED]> PO Box 141, Windsor, NSW 2756, Australia --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] Page 'hangs' when sending message from compose page
Good afternoon, On 19/8/05 at 1:12 PM -0500, Jonathan Angliss <[EMAIL PROTECTED]> wrote: >As this has come up several times in the past, and some issues with variable >corruption in apache/php environment, I'm going to put in some code this >weekend that allows you to define a URL for the site URL, sort of like >Gallery if you've ever used it, with the default left to automatically >attempt to detect it. Due to the changes, this would probably go straight >into both devel and stable branches, so it should appear in the next >release. I would prefer to set (or remove) the port number since our SM setup uses a virtual host that has multiple domains. Technically it's not a problem; it's a customer perception issue. We use (eg) both .com.au and .com domains so that customers can use the one that feels more natural. While it won't cause any real problems if they get diverted to a different domain, I would prefer if they could stay with the domain they logged in to. How about a preference for setting either/both the domain name and/or the port number? But it doesn't really matter what you choose, I appreciate your efforts in finding and implementing a solution. Thanks, Charlie -- Charlie Garrison <[EMAIL PROTECTED]> PO Box 141, Windsor, NSW 2756, Australia --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] Page 'hangs' when sending message from compose page
Good afternoon, On 19/8/05 at 10:49 PM -0500, Jonathan Angliss <[EMAIL PROTECTED]> wrote: >> I would prefer to set (or remove) the port number since our SM setup uses >> a virtual host that has multiple domains. Technically it's not a problem; >> it's a customer perception issue. > >Do you use the vhost plugin by any chance? No (or at least I don't think so, I didn't do the original install), and I haven't quite worked out how it fits into the overall scheme. Users are currently logging in with accounts from many different domains. We use qmail/vpopmail for virtual email domains. >> We use (eg) both .com.au and .com domains so that customers can use the >> one that feels more natural. While it won't cause any real problems if >> they get diverted to a different domain, I would prefer if they could stay >> with the domain they logged in to. > >It would cause issues with session handling. Cookies cannot cross the >domains, so the session would be dropped, and then you'd lose whatever you >were attempting to do. So that would be an issue ;) I would have thought that would be a reason not to change domains following a 'redirect' within SM. The issue with cross-domain cookies would support the idea of not enforcing one domain name. If user logs into domain.com.au and then gets redirected to domain.com, would that mean they have to log in again? >> How about a preference for setting either/both the domain name and/or the >> port number? > >I can consider that as an option. Great. And I'm happy to discuss implications of various options or to help implement them. >> But it doesn't really matter what you choose, I appreciate your efforts >> in finding and implementing a solution. > >Not a problem. It has been discussed in the past before, but passed over >due to more important issues/bugs to resolve. The ever-present 'more important issues'. I think we all understand that dilemma. Thanks again for your efforts with this. Charlie -- Charlie Garrison <[EMAIL PROTECTED]> PO Box 141, Windsor, NSW 2756, Australia --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] Page 'hangs' when sending message from compose page
Good afternoon, On 20/8/05 at 12:02 AM -0700, Paul Lesneiwski <[EMAIL PROTECTED]> wrote: >>>It would cause issues with session handling. Cookies cannot cross the >>>domains, so the session would be dropped, and then you'd lose whatever you >>>were attempting to do. So that would be an issue ;) >> >> >> I would have thought that would be a reason not to change domains >> following a 'redirect' within SM. The issue with cross-domain >> cookies would support the idea of not enforcing one domain name. If >> user logs into domain.com.au and then gets redirected to domain.com, >> would that mean they have to log in again? > >I think you misunderstood him. Jonathan was aruging your case. And you may be right. Which wouldn't surprise me at the end of a long week, and with no time off this weekend; deadlines and all that. But this SM stuff is one of the things I need to have fixed, so I'm happy to donate some time to help implement a flexible solution. Thanks again. Charlie -- Charlie Garrison <[EMAIL PROTECTED]> PO Box 141, Windsor, NSW 2756, Australia --- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id)95 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] External access to folders
It looks to me like you're mixing and matching imap and pop functions incorrectly. Squirrelmail uses imap to create the folders. When you access port 110, you're making a pop3 connection which won't be able to see any subfolders (only the INBOX). I'm not familiar with the imap libraries in PHP (for instance, it's somewhat surprising to me that the imap_open() function apparently happily opens a pop3 connection). It may be as trivial as changing the port number to 143, but don't bet on it (shouldn't be too hard to figure out though). good luck, ~c Ian Sweeney wrote: My ISP uses SquirrelMail as the web email client. When mail is sent from the SquirrelMail client a copy is stored in the INBOX.Sent folder. From a separate web site I’m working on I can use PHP to get at email in the INBOX using $mbox=imap_open("{pop3.my-isp.com:110/pop3}INBOX","my-username","my-password"); How do I access the emails in the INBOX.Sent folder? I tried $mbox=imap_open("{pop3.my-isp.com:110/pop3}INBOX.Sent","my-username","my-password"); with no luck. **Ian Sweeney** -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.385 / Virus Database: 268.3.2/294 - Release Date: 27/03/2006 --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 -- squirrelmail-users mailing list Posting Guidelines: http://www.squirrelmail.org/wiki/MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
[SM-USERS] timeout issue
We're trying to move from an older version of squirrelmail to a more current one but are having some trouble with a timeout for people who have several thousand messages in their inbox (those people can login to the older squirrelmail without a problem). Both instances are contacting the same imap mail server. The problem is with squirrelmail-1.4.6-7.el4 on RHEL4 and what happens is that the left pane loads ok after login, but there is never any content shown in the larger right hand pane. There is no error message returned to the browser, only an empty page (some browsers show an empty file named right_main.php and ask if you want to download/open it) after about 15 seconds. For users with only a couple hundred messages things work fine. On our older installation of squirrelmail, when a user's mailbox grows too large, the user recieves a (somewhat cryptic) error about exceeding a 30 second timeout -- but no similar error is returned for the new server (and the big problem is that the threshhold seems to be a much smaller inbox). I've searched archives and source code for some way to increase the timeout value, but haven't yet found it. I have a vague memory of a post from several months ago (not even sure it was on this list) about someone who claimed to have raised a default timeout from 30 seconds to 300 seconds. This person said s/he had no trouble (other than the several minute delay) with loading inboxes with huge mailboxes as long as enough memory had been allocated in php.ini and the imap server was fast enough. I would love to know how to troubleshoot/solve this issue. thanks very much in advance, ~c - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 -- squirrelmail-users mailing list Posting Guidelines: http://www.squirrelmail.org/wiki/MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
Re: [SM-USERS] timeout issue
Marc Powell wrote: > >> >> I would love to know how to troubleshoot/solve this issue. > > http://www.squirrelmail.org/wiki/SolvingProblems > > Compare your squirrelmail configurations between systems. Compare your > php.ini configuration between systems. There are probably discrepancies. > > Blank pages mean php errors. Enable or increase error reporting in > php.ini (error_reporting and display_errors in php.ini). > > Some of the timeouts you're probably interested in are in php.ini -- > default_socket_timeout, max_execution_time, max_input_time, > memory_limit. > > Enable server side sorting in SM config if your IMAP server supports it. > > Use a php accelerator like Zend or other to increase performance. Use > imapproxy. > > See http://www.squirrelmail.org/wiki/SquirrelMailPerformance > > -- > Mark Thanks so much for all the great info. In php.ini I changed these two parameters as follows: max_execution_time = 75 memory_limit = 128M and I turned on server side sorting in the SM config and now my 65000+ message inbox loads and is usable. thanks again, ~c - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 -- squirrelmail-users mailing list Posting Guidelines: http://www.squirrelmail.org/wiki/MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
[SM-USERS] Error: Could not complete request
Hi Everyone, I'm getting this error: ERROR: Could not complete request. Query: SELECT "INBOX" Reason Given: Internal error occurred. Refer to server log for more information. [2006-12-21 02:10:26] Here is the log its asking me to look for: from /var/log/maillog Dec 21 02:10:26 manhattan dovecot: imap-login: Login: user=, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured Dec 21 02:10:26 manhattan dovecot: IMAP(flintstone): Disconnected: Logged out Dec 21 02:10:26 manhattan dovecot: imap-login: Login: user=, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured Dec 21 02:10:26 manhattan dovecot: IMAP(flintstone): open(/var/mail/.temp.manhattan.1918.7b758668981af6ad) failed: Permission denied Dec 21 02:10:26 manhattan dovecot: IMAP(flintstone): file_lock_dotlock() failed with mbox file /var/mail/flintstone: Permission denied Dec 21 02:10:26 manhattan dovecot: IMAP(flintstone): Disconnected I'm able to send mail out. there is read/write permission on this directory for owner and group. I've been looking all over google to fix this, with no luck. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV -- squirrelmail-users mailing list Posting Guidelines: http://www.squirrelmail.org/wiki/MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
[SM-USERS] ERROR: Could not complete request.
Hi everyone, here is the error I'm getting. ERROR: Could not complete request. Query: SELECT "INBOX" Reason Given: Internal error occurred. Refer to server log for more information. [2006-12-21 06:42:30] I'm using dovecot-imap. PHP 5.1.6 Server version: Apache/2.2.3 fedora core 6 dovecot installed via rpm, squirrel mail installed via binaries This is what i get from the maillog logs: Dec 21 06:52:30 manhattan dovecot: IMAP(flintstone): Disconnected: Logged out Dec 21 07:02:31 manhattan dovecot: imap-login: Login: user=, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured Dec 21 07:02:31 manhattan dovecot: IMAP(flintstone): open(var/mail/flintstone, O_CREAT) failed: No such file or directory Dec 21 07:02:31 manhattan dovecot: IMAP(flintstone): access() failed with mbox file var/mail/flintstone: No such file or directory Dec 21 07:02:31 manhattan dovecot: IMAP(flintstone): stat() failed with mbox file var/mail/flintstone: No such file or directory Dec 21 07:02:31 manhattan dovecot: IMAP(flintstone): Disconnected: Logged out There is a directory and path for mail to /var/mail/flintstone permissions for this directory are rw-rw Here is one of the things i think have to do with my problems: ## ## Mailbox locations and namespaces ## # Location for users' mailboxes. This is the same as the old default_mail_env # setting. The default is empty, which means that Dovecot tries to find the # mailboxes automatically. This won't work if the user doesn't have any mail # yet, so you should explicitly tell Dovecot the full location. # # If you're using mbox, giving a path to the INBOX file (eg. /var/mail/%u) # isn't enough. You'll also need to tell Dovecot where the other mailboxes are # and where Dovecot can place its index files. This is called the "root mail # directory", and it must be the first path given in the mail_location setting. # # There are a few special variables you can use, eg.: # # %u - username # %n - user part in [EMAIL PROTECTED], same as %u if there's no domain # %d - domain part in [EMAIL PROTECTED], empty if there's no domain # %h - home directory # # See doc/variables.txt for full list. Some examples: # # mail_location = maildir:~/Maildir # mail_location = mbox:~/mail:INBOX=/var/mail/%u # mail_location = mbox:/var/mail/%1n/%n:INDEX=/var/indexes/%1n/%n # # http://wiki.dovecot.org/MailLocation # mail_location = mbox:%h/mail:INBOX=var/mail/%u I don't know what else to do. I think it is this setting messing things up. but I'm not sure. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV -- squirrelmail-users mailing list Posting Guidelines: http://www.squirrelmail.org/wiki/MailingListPostingGuidelines List Address: squirrelmail-users@lists.sourceforge.net List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
[SM-USERS] Default Colors
Is there any quick and easy way to change the default colors for the squirrel mail pages? Not the inbox but like the login colors and error pages. -Charlie
[SM-USERS] Courier IMAP Related. Authdaemon Error. Hoping someone can help.
First Off, I know this is the Squirrel Mail list but I can't find any help anywhere else... I'm sorry if this offends anyone. For the last 2 days I have been trying to figure out this error I get when I do a authdaemond start: ./authdaemond.mysql: error while loading shared libraries: libmysqlclient.so.12: cannot open shared object file: No such file or directory Well. Obviously there's a file it can't open. But I don't know what file it's looking for. Also, when I did the configure for courier-imap I specified --without-authmysql and yet it's trying ot use it? Anyone know why? Any help would be appreciated! -Charlie Davis --- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01 -- 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] Owner Options: Can you make plugins load based on user logged in?
I'm using Squirrel-Mail with Courier-imap which is using authmysql. I'm writing a plugin that I only want the [EMAIL PROTECTED] to see in the option bar. My idea is that all I need to do is put an if statement in the setup.php file to check the user that is logged in but I don't know the variable name that the user is stored in. Anyone know the name or know of a better way to do this? -Charlie --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf -- 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