Re: [SM-USERS] ERROR : Could not complete request. Query: SELECT ""
I've tried putting debug in, but the problem is one of catching the error; it doesn't always happen and (most frustratingly) *I* am unable to reproduce it with my mail account. I host mail for several family members, and they have problems on occasion. I'll try putting some logging statements in to the code so I can try and see what is being passed around. I'll you know if I find anything. http://article.gmane.org/gmane.mail.squirrelmail.user/17447 --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] "bounce message" plugin or option?
Within Pine or Mutt (my two previous MUAs), there was a feature availible to "bounce" a message to another recipient. I went through the list of plugins, and I didn't find anything that sounded hopeful. Is there such a beast? Or is it part of one of the default plugins that perhaps I don't have enabled? Right now I have delete_move_next, calendar, listcommands, and newmail enabled in SquirrelMail 1.4.2. http://www.squirrelmail.org/plugin_view.php?id=226 --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] IMAP ERROR (DELETE failed: Can't delete mailbox : no such mailbox)
I donエt know why this thing is happening, sometimes not always when I try to log into the squirrelmail the left frame didnエt show the folders and only show this error ERROR : Could1 not complete request. Query: DELETE "" Reason given: DELETE failed: Can't delete mailbox : no such mailbox >>> >>>I have seen the same error in SM 1.4.0. The error occurs only when two >>>conditions are true: folder_sync plugin is active with "Folder list >>>update >>>forces message list update" enabled, and there is a user-created folder >>>with sub-folders. > > > I had been working with another user who was seeing this under 1.4.2, but > she hasn't responded to my last message about this. I am currently > thinking that it might have to do with slashes and/or spaces in folder > names and your PHP installation being possibly misconfigured. Try > creating a PHP file on your system with the code below and tell me what it > does. > > Also, please send the HTML code for the originating page for evaluation. http://article.gmane.org/gmane.mail.squirrelmail.user/17447 --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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: Problem Moving Multiple Messages
http://article.gmane.org/gmane.mail.squirrelmail.user/17447 --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] Auto Expunge and By default, move to Trash
- Don't auto-expunge in SM. If they really need to use Lookout like that, let them learn how to use the expunge button. Hehe, Lookout, good call :) I've disabled auto-expunge. And since the users don't want to loose these messages, they'll never use the expunge button, which leaves back at square one. Yeah, you'd really have to hack the source to implement hiding those messages IIRC. Don't think it can be done as a plugin, but if it could If you need help coding, you might also ask on the plugins list. Aw, heck. Here is a start: functions/mailbox_display.php Mine is slightly modified, so line number may be wrong, but... around line 69 is where you need to insert some code. The function "printMessageInfo()" starts like this: $color_string = $color[4]; if ($GLOBALS['alt_index_colors']) { if (!isset($row_count)) { $row_count = 0; } $row_count++; if ($row_count % 2) { if (!isset($color[12])) { $color[12] = '#EAEAEA'; } $color_string = $color[12]; } } $msg = $msgs[$key]; After that, I put this: if (isset($msg['FLAG_DELETED']) && $msg['FLAG_DELETED']) return; And it successfully hid deleted messages. You'll probably want to create a preference so you can turn that on/off, but that's not hard - I'll leave it up to you. Cheers, Paul - Paul --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] Auto Expunge and By default, move to Trash
Paul, Thanks for the tip! That little line works great! Like you said, it would be nice to enable/disable this (mis)feature. Also, the "Viewing Messages: 1 to xx (xx total) now appears incorrect, because it is still counting the hidden messages. If I only knew the first thing about programming, I would get right on this! :) However, looks like I'll be stopping by Borders on the way home. I assume I'll just need a book on PHP, please correct me if I will need more. Thanks for such a quick response! If I could get the same support for the commercial products I use, life would be grand! Doug > -Original Message- > From: p dont think [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 14, 2004 5:03 PM > To: Doug Koobs > Cc: [EMAIL PROTECTED] > Subject: Re: [SM-USERS] Auto Expunge and By default, move to Trash > > > >>- Don't auto-expunge in SM. If they really need to use > Lookout like > >>that, let them learn how to use the expunge button. > > > > > > Hehe, Lookout, good call :) > > > > I've disabled auto-expunge. And since the users don't want > to loose these > > messages, they'll never use the expunge button, which > leaves back at square > > one. > > Yeah, you'd really have to hack the source to implement hiding those > messages IIRC. Don't think it can be done as a plugin, but > if it could > > If you need help coding, you might also ask on the plugins list. > > Aw, heck. Here is a start: > > functions/mailbox_display.php > > Mine is slightly modified, so line number may be wrong, but... around > line 69 is where you need to insert some code. The function > "printMessageInfo()" starts like this: > > $color_string = $color[4]; > > if ($GLOBALS['alt_index_colors']) { > if (!isset($row_count)) { > $row_count = 0; > } > $row_count++; > if ($row_count % 2) { > if (!isset($color[12])) { > $color[12] = '#EAEAEA'; > } > $color_string = $color[12]; > } > } > $msg = $msgs[$key]; > > After that, I put this: > > if (isset($msg['FLAG_DELETED']) && $msg['FLAG_DELETED']) return; > > And it successfully hid deleted messages. You'll probably want to > create a preference so you can turn that on/off, but that's > not hard - > I'll leave it up to you. > > Cheers, > >Paul > > > > - Paul > Confidential: This electronic message and all contents contain information from Financial Credit Services which may be privileged, confidential or otherwise protected from disclosure. The information is intended to be for the addressee only. If you are not the addressee, any disclosure, copy, distribution or use of the contents of this message is prohibited. If you have received this electronic message in error, please notify the sender and destroy the original message and all copies. --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click -- 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
[SM-USERS] Re: error on send
Upgrading fixed everything! Thanks. Jonathan Angliss wrote: Hello Curtis, On Wednesday, April 14, 2004, Curtis Vaughan wrote... Whenever I try to send anything through Squirrelmail, I get the following error: Command not implemented Server replied: 502 MailMonitor for SMTP: Command not implemented Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 9601 bytes) in /usr/share/squirrelmail/functions/imap_general.php on line 138 Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 129 bytes) in Unknown on line 0 Line 138 in the file imap_general.php used the original value of 9098. I changed it to 9600, but as you see still the same error. Is this a Squirrelmail error, or somehow related to Apache? And what is the fix? BTW, I'm running Squirrelmail 1.2.6 on Debian 2.4.18 Ignoring the fact you're using a VERY old version, which is known to have security issues... the problem is the result of the first error. You haven't enabled SMTP Authentication. I suggest checking your configuration files... Because the version you're using is so old, I cannot even remember if it does support SMTP Authentication. I strongly suggest upgrading. --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] Auto Expunge and By default, move to Trash
Thanks for the tip! That little line works great! You're welcome. Like you said, it would be nice to enable/disable this (mis)feature. Also, the "Viewing Messages: 1 to xx (xx total) now appears incorrect, because it is still counting the hidden messages. Yup, you'll have to do some decrementing... If I only knew the first thing about programming, I would get right on this! :) However, looks like I'll be stopping by Borders on the way home. I assume I'll just need a book on PHP, please correct me if I will need more. Familiarity with the SM code, which just comes from digging around. Thanks for such a quick response! If I could get the same support for the commercial products I use, life would be grand! Ironic, isn't it? Goes to show that getting paid isn't always the reason people do things. - Paul --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] After Login.....
Dears,I installed RH9,qmail,courier-imap & squirrelmail When i want to login,i receive following line: Error opening ../data/default_pref ERROR Error opening ../data/default_pref Could not create initial preference file! ../data/ should be writable by user apache Please contact your system administrator and report this error. Please guide me... Please guide yourself. There is ample information about this error on the website and in the mailing list archives (and probably Google too). Please don't waste our precious time with such inquiries. Thank you, Paul --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] After Login.....
> Dears,I installed RH9,qmail,courier-imap & > squirrelmail > When i want to login,i receive following line: >Error opening > ../data/default_pref > > > ERROR > Error opening ../data/default_pref > Could not create initial preference > file! > ../data/ should be writable by user > apache > Please contact your system administrator and > report this error. > > > > Please guide me... > Yours,Mohsen. I think the error message "../data/ should be writable by user apache" is pretty clear about what you have to do: change the permissions for the data directory. As it is now, your web server (user "apache") can't create the file needed. If you're running Linux, try "man chmod" to read more about it. You can also search the web for information about users and permissions in Linux. Sincerly, Fredrik. --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click -- 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] Auto Expunge and By default, move to Trash
Doug Koobs wrote: That is a lot less painful/costly than trying to tell executives how to manage their own email. I set up this server to meet their needs, after all, even if some of those needs don't make any sense to me. Yeah, but dude, "delete" means "delete". I don't see a need for code changes to SM. Maybe you can rename their Trash folder to "Old" or something similar. Then instead of adjusting their view, they just click on the Old folder to see their already-deleted mail. It accomplishes what they need and you haven't really changed anything. Sometimes non-technical people are magically made happy by rephrasing what the product does or how they should use it. I've seen "Wally" type software engineers at previous jobs do that to management of our own company and of customer companies with shocking success. -- Will Berry Co-founder, Second Brain website hosting http://www.secondbrainhosting.com/ --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] "bounce message" plugin or option? - bounce doesn't work in 1.4.2
> -Original Message- > From: p dont think [mailto:[EMAIL PROTECTED] > Sent: Wednesday, 14 April 2004 5:32 PM > To: C. Bensend > Cc: [EMAIL PROTECTED] > Subject: Re: [SM-USERS] "bounce message" plugin or option? > > > >Within Pine or Mutt (my two previous MUAs), there was a feature > > availible to "bounce" a message to another recipient. I > went through > > the > > list of plugins, and I didn't find anything that sounded hopeful. > > > >Is there such a beast? Or is it part of one of the > default plugins > > that perhaps I don't have enabled? Right now I have > delete_move_next, > > calendar, listcommands, and newmail enabled in SquirrelMail 1.4.2. > > http://www.squirrelmail.org/plugin_view.php?id=226 > I install that plug-in with SquirrelMail 1.4.2 on OpenBSD-3.4 and when I click on Bounce I received this error message: Warning: main(../../functions/identity.php): failed to open stream: No such file or directory in /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php on line 7 Fatal error: main(): Failed opening required '../../functions/identity.php' (include_path='.:/pear/lib:/var/www/pear/lib') in /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php on line 7 Do you know what's wrong? Cheers, Zoong --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] "bounce message" plugin or option? - bounce doesn'twork in 1.4.2
> I install that plug-in with SquirrelMail 1.4.2 on OpenBSD-3.4 and when I > click on Bounce > I received this error message: > > > Warning: main(../../functions/identity.php): failed to open stream: No > such > file or directory in /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php > on > line 7 > > Fatal error: main(): Failed opening required > '../../functions/identity.php' > (include_path='.:/pear/lib:/var/www/pear/lib') in > /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php on line 7 I can duplicate this problem. I am running OpenBSD 3.3-STABLE, and I see the following: [Wed Apr 14 23:09:44 2004] [error] PHP Fatal error: Failed opening required '../../functions/identity.php' (include_path='.:/usr/local/lib/php') in /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php on line 7 The file 'identity.php' does not exist anywhere in the plugin nor in the SquirrelMail distribution. Oversight? Benny -- "I can't believe it's not carp!"-- MXC --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] "bounce message" plugin or option? - bounce doesn't work in 1.4.2
Hello Zoong, On Wednesday, April 14, 2004, Zoong Pham wrote... > Warning: main(../../functions/identity.php): failed to open stream: No such > file or directory in > /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php on > line 7 > Do you know what's wrong? You might want to try upgrading to the latest 1.4.3 snapshot... I think you'll find it there. -- Jonathan Angliss ([EMAIL PROTECTED]) Posting Hints: http://article.gmane.org/gmane.mail.squirrelmail.user/16718 --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] ServerSideFilters question..
I don't know anything about gentoo, but I can tell you that you aren't using the latest source, which aparently is still only available from CVS, as the eperror stuff is fixed in the copy of the source the author sent me the other day. Looking at the source he sent, it looks like a lot more was changed than just integrating my FreeBSD patches. Can I ask a dumb question.. How do I get the CVS version? I tried.. cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/serverfilters co ..but I don't know what to tell it for "modulename" :) I'd love to get this working somehow. :D --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] "bounce message" plugin or option? - bounce doesn'twork in 1.4.2
> -Original Message- > From: C. Bensend [mailto:[EMAIL PROTECTED] > Sent: Thursday, 15 April 2004 2:15 PM > To: [EMAIL PROTECTED] > Subject: RE: [SM-USERS] "bounce message" plugin or option? - bounce > doesn'twork in 1.4.2 > > I can duplicate this problem. I am running OpenBSD > 3.3-STABLE, and I see > the following: > > [Wed Apr 14 23:09:44 2004] [error] PHP Fatal error: Failed opening > required '../../functions/identity.php' > (include_path='.:/usr/local/lib/php') in > /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php on line 7 > > The file 'identity.php' does not exist anywhere in the plugin > nor in the > SquirrelMail distribution. Oversight? Same as in OpenBSD-3.4, the file doesn't exist anywhere in the SquirrelMail distribution. If the plug-in only works with the 1.4.3 snapshot, then I will wait until the snapshot becomes stable. Cheers, Zoong --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] ServerSideFilters question..
> >> >> I don't know anything about gentoo, but I can tell you that you aren't >> using the latest source, which aparently is still only available from >> CVS, as the eperror stuff is fixed in the copy of the source the author >> sent me the other day. Looking at the source he sent, it looks like a >> lot more was changed than just integrating my FreeBSD patches. >> > > Can I ask a dumb question.. > > How do I get the CVS version? I tried.. > > cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/serverfilters > co > > ..but I don't know what to tell it for "modulename" :) http://cvs.sourceforge.net/viewcvs.py/serverfilters/ mkdir serverfilters cd serverfilters cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/serverfilters co . --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] 'bounce message' plugin or option? - bounce doesn'twork in 1.4.2
> > >> -Original Message- >> From: C. Bensend [mailto:[EMAIL PROTECTED] >> Sent: Thursday, 15 April 2004 2:15 PM >> To: [EMAIL PROTECTED] >> Subject: RE: [SM-USERS] "bounce message" plugin or option? - bounce >> doesn'twork in 1.4.2 >> >> I can duplicate this problem. I am running OpenBSD >> 3.3-STABLE, and I see >> the following: >> >> [Wed Apr 14 23:09:44 2004] [error] PHP Fatal error: Failed opening >> required '../../functions/identity.php' >> (include_path='.:/usr/local/lib/php') in >> /htdocs/squirrelmail-1.4.2/plugins/bounce/bounce.php on line 7 >> >> The file 'identity.php' does not exist anywhere in the plugin >> nor in the >> SquirrelMail distribution. Oversight? > > Same as in OpenBSD-3.4, the file doesn't exist anywhere in the > SquirrelMail > distribution. > > If the plug-in only works with the 1.4.3 snapshot, then I will wait until > the snapshot becomes stable. functions/identity.php provides only one function. if you want to use it on your installation - get that file from cvs. http://cvs.sf.net/viewcvs.py/*checkout*/squirrelmail/squirrelmail/functions/identity.php?content-type=text%2Fplain&rev=1.4.4.2 Author can also include this function in plugin if (! file_exists(SM_PATH . 'functions/identity.php') { function get_identities() { ... } } else { include_once(SM_PATH . 'functions/identity.php'); } -- Tomas --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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] Auto Expunge and By default, move to Trash
>> >> - Retrain your users (explain to them what a wonderful thing >> the trash >> folder is and how much disk space it takes up to keep all their old >> messages around... liken it to the "recycle bin" in windows) > > Disk space is cheap... At our current rate, I won't run out of space on > the > mail storage partition for (at the very least) 5 years, at which point I > can > just add more. That is a lot less painful/costly than trying to tell > executives how to manage their own email. I set up this server to meet > their > needs, after all, even if some of those needs don't make any sense to me. Just wait for OE to crash due to low memory/space problems. This emulation of email program caches IMAP mailbox on local computer and does not work with bigger mailboxes. If you are using Outlook, and not Outlook Express - I don't know its storage habits. > Confidential: This electronic message and all contents contain information ... bla bla bla ... This message is not confidential. It went in plain text through several mail servers and it is stored in public mailing list archives. -- Tomas --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click -- 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