[SM-USERS] "error contacting the mail server"

2002-12-24 Thread Dave
I have just installed SM 1.2.10 on my server running RH8.  When I go to log
in, I get this message:

"There was an error contacting the mail server.
Contact your administrator for help."

Being as I'm the administrator, I'm not much help...  Where is a likely
place to begin looking for the problem?  I'm using the UW IMAP server and
sendmail, if that makes a difference.

thanks,
Dave


---
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



[SM-USERS] New Mail plugin

2015-09-09 Thread dave
Hello mailing list,

I'm a long time user of SM. I recently got a Linode and upgraded SM to
1.5.2. I use SM for family and friends. Nothing serious. New mail has
always been a little intermittent for me. I see there is a bug listed in
v1.5.1 but not in v1.5.2 so I'm wondering if I have done something wrong.
As I write this I have sent me an email from an external site and SM's
left pane INBOX has a (1) next to it and Firefox tab has "0 New Messages"
as a title. No popup. I have an exception for popups in Firefox for my
webmail address. It looks like I have Folder preferences and New Mail
options selected properly. I have not configured sound. In the past all I
did was resubmit on New Mail Options page and that would fix it. I
installed SM 1.5.2 in /usr/share/squirrelmail.devel but I'm not sure that
was correct. All other plugins work fine.

My configuration:
Postfix 2.11
MySQL 5.5
Dovecot 2.2
PHP 5.6
Apache2 2.4
SSL cert protecting Squirrelmail vhost.

Client:
Windows 7
Firefox 40.0.3

Plugins:
Autocomplete 3.0
Compatibility 2.0.16
New Mail CORE
Add Address 1.0.3
Multiple Attachments 1.0

Thanks for a very nice product!
Dave Anderson



--
Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
Get real-time metrics from all of your servers, apps and tools
in one place.
SourceForge users - Click here to start your Free Trial of Datadog now!
http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
-
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


Re: [SM-USERS] New Mail plugin

2015-09-10 Thread dave
Hi Paul,

Thank you for your helpful instructions. Without going into detail my
issue was corrected by changing the setting "Unread Message Notification
Type" under Folder Preferences -> Folder List Options from "Only Unseen"
to "Unseen and Total". I checked the config_default.php file and the
default is set to: $default_unseen_type = 1; So as far as I can see, out
of the box, the New Mail plugin won't work. Granted I'm not an expert at
all. So I was thinking of a solution and probably you have a better idea
but what I am thinking is either the default for $default_unseen_type goes
from 1 to 2 or on the "Options - New Mail Notification" there could be
added the instructions for setting the "Unread Message Notification Type".
One other thought is that maybe both settings for "Unread Message
Notification Type" which are "Unseen and Total" and "Only Unseen" both
work with the New Mail plugin.

If I can help by doing some of the leg work I would like to.

Thanks,
Dave Anderson



On Thu, September 10, 2015 1:29 pm, Paul Lesniewski wrote:
> On 9/9/15, d...@zilchware.com  wrote:
>
>> Hello mailing list,
>>
>>
>> I'm a long time user of SM. I recently got a Linode and upgraded SM to
>> 1.5.2. I use SM for family and friends. Nothing serious. New mail has
>> always been a little intermittent for me. I see there is a bug listed in
>>  v1.5.1 but not in v1.5.2 so I'm wondering if I have done something
>> wrong. As I write this I have sent me an email from an external site and
>> SM's
>> left pane INBOX has a (1) next to it and Firefox tab has "0 New
>> Messages"
>> as a title. No popup. I have an exception for popups in Firefox for my
>> webmail address.
>
> Assuming you triple-checked your new mail settings, I'd look at the
> browser's JavaScript error log to see why it is blocking this.  Also make
> sure you have JavaScript enabled and you aren't blocking with something
> like noscript.
>
> --
> Paul Lesniewski
> SquirrelMail Team
> Please support Open Source Software by donating to SquirrelMail!
> http://squirrelmail.org/donate_paul_lesniewski.php
>
>
> -
> -
> Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
> Get real-time metrics from all of your servers, apps and tools
> in one place. SourceForge users - Click here to start your Free Trial of
> Datadog now!
> http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
> -
> 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
>
>



--
-
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


Re: [SM-USERS] Can't make SquirrelMail have chosen attach size. Why?

2015-09-17 Thread dave
Hi,

It could be your mail server and not SquirrelmaiI. I use Debian with 
Posttfix and Dovecot. For Squirrelmail I changed the php.ini settings in 
/etc/php5/apache2/ to:
post_max_size = 110M
upload_max_filesize = 100M

For Postfix I sdded a line in /etc/postfix/main.cf file as follows:
message_size_limit = 10240

So if someone sends/receives a message over 102.4MB Postfix will not 
allow it and Squirrelmail won't get it either. In my case I'm using 
Postfix to limit the message (with attachment) size. That is why the 
PHP, post_max_size, is greater than Postfix, upload_max_filesize.

I hope this is what you are looking for.

Dave A.


On 2015-09-17 02:53, André Z. D. A. wrote:
> I have the following situation:
> 
> 1. Squirrelmail hosted in its own directory, similar to:
> 
> https://me.server.com/squi/
> 
> To log into Squirrelmail we use the above URL, and it works from there
> as wanted.
> 
> All paths in the following items are relative to this URL, unless
> noted otherwise.
> 
> It is an Apache running on Ubuntu 14.04.2 LTS (GNU/Linux
> 3.13.0-61-generic x86_64).
> 
> 2. The file .htaccess has nothing related to attachment sizes. It did
> not work for these.
> 
> 3. The php.ini file has, among others, these lines:
> 
> magic_quotes_gpc=false
> magic_quotes_runtime=false
> magic_quotes_sybase=false
> post_max_size=50M
> memory_limit=300M
> upload_max_filesize=20M
> 
> 4. Running a PHP script now to call php_info() reports (as it was
> reported long ago, it stays the same; the server was rebooted for
> sure, it was reinstalled ~1 month ago) :
> 
> post_max_size 50M 50M
> memory_limit  300M300M
> upload_max_filesize   20M 20M
> 
> 5. Since it do not work since I reported it, several weeks ago, I have
> check source code. The src/compose.php file has the lines:
> 
> /* php.ini vars which influence the max for uploads */
> $configvars = array('post_max_size', 'memory_limit',
> 'upload_max_filesize');
> foreach($configvars as $var) {
> /* skip 0 or empty values, and -1 which means 'unlimited' 
> */
> if( $size = getByteSize(ini_get($var)) ) {
> if ( $size != '-1' ) {
> $sizes[] = $size;
> }
> }
> }
> 
> 6. Squirrelmail only allows at most 2 MiB sized attachments, or it
> gives an error.
> 
> 7. I have made an upload test with PHP, in this same folder. I can use
> size of to the reported limits, except in Squirrelmail.
> 
> How should it be solved?
> 
> 
> ---
> Date: 2015-04-30 06:11
> From: André Z. D. A. andrezd...@yandex.com
> To: 'Squirrelmail User Support Mailing List'
> squirrelmail-users@lists.sourceforge.net
>> 
>> I'll research a bit on what exactly I can do (with my server) in 
>> htaccess.
>> 
>> And I'll post phpinfo output without removing the "uneeded" lines - 
>> complete, basically.
>> 
>> Just give me a couple of days.
>> 
>> Thank you, very much
>> 
>>>> Ryan,
>>>> 
>>>> As far as I am aware two php.ini files is a Debianism.. CentOS/RHEL 
>>>> uses
>>> 
>>> only one php.ini which is located in /etc/ . I don't do a huge amount 
>>> of web
>>> oriented stuff, mostly OS/system level and openstack/cloudstack 
>>> things these
>>> days with some admin of various services like the company wiki and 
>>> chat
>>> 
>>>> servers, so I may be wrong but I have been doing CentOS/RH admin 
>>>> since RH
>>> 
>>> 1.x and have never seen two php.ini files..
>>> 
>>>> Good pointer on the .htaccess stuff.. I forgot all about stuffing 
>>>> vars
>>> 
>>> into there..
>>> 
>>>> Have a good day.
>>>> -R
>>> 
>>> Yeah that probably is the case; I use Gentoo mainly, and it has the 2
>>> php.ini. As long as you're changing the right file, it should be 
>>> fine,
>>> though it does require an apache restart to take effect (might be a 
>>> good
>>> idea to do so in off-peak time despite generally being very quick). I
>>> mentioned the htaccess as there was some discussion about limited 
>>> access to
>>> system modification, in which case htaccess is a simple alternative. 
>>> I did
>>> notice in my own configuration, I changed both upload_max_filesize &
>>> post_max_size--though I'm not sure both are required. Not a

Re: [SM-USERS] New Mail plugin

2015-09-26 Thread dave
Update,

This problem I had with new mail notifications is embarressing me because
I was pretty sure that the below "problem" was a problem. My conclusion is
Squirrelmail or the New Mail plugin, was in no way a problem. It turns out
that my "stupid" phone, as opposed to my smart phone, was syncing my
mailbox and when that happens mail gets transfered, on the email server,
from maildir new directory to maildir cur directory.

While I was debugging my snafu, in the source code, the variable that did
not return right was anything to do with RECENT. RECENT emails are stored
in maildir new. As soon as the new email is noticed it gets transfered to
maildir cur. Then it will not be detected unless "New Mail Notifications"
option "Count only messages that are RECENT" is set to unchecked.

But I like the option to only notify on RECENT.

If anyone has more insight I've got an open ear.

Dave A


On Thu, September 10, 2015 10:55 pm, d...@zilchware.com wrote:
> Hi Paul,
>
>
> Thank you for your helpful instructions. Without going into detail my
> issue was corrected by changing the setting "Unread Message Notification
> Type" under Folder Preferences -> Folder List Options from "Only Unseen"
> to "Unseen and Total". I checked the config_default.php file and the
> default is set to: $default_unseen_type = 1; So as far as I can see, out
> of the box, the New Mail plugin won't work. Granted I'm not an expert at
> all. So I was thinking of a solution and probably you have a better idea
> but what I am thinking is either the default for $default_unseen_type
> goes from 1 to 2 or on the "Options - New Mail Notification" there could
> be added the instructions for setting the "Unread Message Notification
> Type".
> One other thought is that maybe both settings for "Unread Message
> Notification Type" which are "Unseen and Total" and "Only Unseen" both
> work with the New Mail plugin.
>
> If I can help by doing some of the leg work I would like to.
>
>
> Thanks,
> Dave Anderson
>
>
>
>
> On Thu, September 10, 2015 1:29 pm, Paul Lesniewski wrote:
>
>> On 9/9/15, d...@zilchware.com  wrote:
>>
>>
>>> Hello mailing list,
>>>
>>>
>>>
>>> I'm a long time user of SM. I recently got a Linode and upgraded SM
>>> to 1.5.2. I use SM for family and friends. Nothing serious. New mail
>>> has always been a little intermittent for me. I see there is a bug
>>> listed in v1.5.1 but not in v1.5.2 so I'm wondering if I have done
>>> something wrong. As I write this I have sent me an email from an
>>> external site and SM's
>>> left pane INBOX has a (1) next to it and Firefox tab has "0 New
>>> Messages"
>>> as a title. No popup. I have an exception for popups in Firefox for my
>>>  webmail address.
>>
>> Assuming you triple-checked your new mail settings, I'd look at the
>> browser's JavaScript error log to see why it is blocking this.  Also
>> make sure you have JavaScript enabled and you aren't blocking with
>> something like noscript.
>>
>> --
>> Paul Lesniewski
>> SquirrelMail Team
>> Please support Open Source Software by donating to SquirrelMail!
>> http://squirrelmail.org/donate_paul_lesniewski.php
>>
>>
>>
>> ---
>> --
>> -
>> Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
>> Get real-time metrics from all of your servers, apps and tools
>> in one place. SourceForge users - Click here to start your Free Trial of
>>  Datadog now!
>> http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
>> -
>> 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
>>
>>
>>
>
>



--
-
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] 404 errors after upgrading to 1.4.4-1.FC2

2005-05-04 Thread Dave Sobel
I'm running Fedora Core 2, and successfully been using SquirrelMail 
through multiple upgrades.

Recently, my system was upgraded, and we appear to have a new version 
of SquirrelMail -- 1.4.4-1.FC2.   Ever since that upgrade, when a user 
clicks "Send" when composing a message, or view a message and click 
"delete" , the message is successfully sent/deleted, but the user is 
returned a "cannot find server" error.   No configuration changes were 
made before or after the upgrade, but the problem didn't occur before, 
and now does.

The web server is distinct from the mail server -- IMAP is on a remote 
server, and that server is also running FC2.

Web server:
Fedora Core 2
PHP 4.3.10
Apache 2.0.51
SquirrelMail 1.4.4-1.FC2
Mail Server:
Fedore Core 2
dovecot
I'm suspicious of a configuration issue -- either SM or Apache, but 
stuck on where to look.

Can you help?
Dave

---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
--
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=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] 404 errors after upgrading to 1.4.4-1.FC2

2005-05-09 Thread Dave Sobel
Jon:
I'm very open to help.
I'm watching the post on this as the action happens, and it doesn't 
appear to be calling https, but it could be buried in a way I'm not 
seeing.

What do you need from me to assist?  How should we proceed?
Dave
On May 9, 2005, at 1:12 PM, Jonathan Angliss wrote:
Hello Dave Sobel,
On Wednesday, May 04, 2005, you wrote:
I'm running Fedora Core 2, and successfully been using SquirrelMail
through multiple upgrades.

Recently, my system was upgraded, and we appear to have a new version
of SquirrelMail -- 1.4.4-1.FC2.   Ever since that upgrade, when a user
clicks "Send" when composing a message, or view a message and click
"delete" , the message is successfully sent/deleted, but the user is
returned a "cannot find server" error.   No configuration changes were
made before or after the upgrade, but the problem didn't occur before,
and now does.
Seems you are probably stuck on a small issue where SM seems to think
it is running inside an SSL environment, and tries to redirect you to
SSL but you don't have it setup. See if you can see the URL that is
referenced in the error message that comes back from your server.
If it is indeed the above, the error is caused in
functions/strings.php in the function get_location. As I've not been
able to duplicate this issue, I cannot work out why SM is thinking
that it is running in an SSL environment, when it is not. This issue
cropped up a several months ago with Mac OS X after a security update
too.
If you have some time for some debugging to help us diagnose the
possible issue, that'd be really nice ;)
--
Jonathan Angliss
<[EMAIL PROTECTED]>

---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
--
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=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] How stable is 1.5x?

2005-05-18 Thread Dave Weiner
Greetings everyone!

Here at our company, we find ourselves needed one of the features of 1.5x, 
mainly the ability to handle mailto href's in Windows with SM as the default 
mail handler.

The server that SM is installed on is one of the primary interfaces to our 
mailsystem, so my boss is rightly so, somewhat leery of going to the 1.5x 
development tree.

How suitable do people think 1.5x is for real-world use?

Has the mailto handling been backported to the 1.4x tree?

Thanks in advance,

Dave


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
--
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=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] How stable is 1.5x?

2005-05-18 Thread Dave Weiner
On Wednesday 18 May 2005 10:39, Ricardo Stella wrote:
> Search the mailing list.  There were patches posted against 1.4.3
> (easily modifiable to 1.4.4) so you could use the mailto href.

I've tried searching the mailing list, and I'm not having any luck.

> I believe it's also on the wiki all the way at the end.  I checked for
> them about a couple of weeks ago and they were still there...

The wikki seems to be overloaded.  I keep getting "Warning: mysql_connect(): 
User squirrelmail@ has already more than 'max_user_connections' active 
connections in /home/groups/s/sq/squirrelmail/htdocs/wiki/lib/db.php on line 
15 
Error connecting to database."

BTW, I'm subscribed to the list, and I get the messages from the list just 
fine.  No need to reply to me *and* the list. :)

>
> My .02...

Dave


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
--
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=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] Using squirrelmail 1.4.6

2006-06-07 Thread Dave Lowe
 
 
I have recently upgraded from version 1.4.3 to 1.4.6 - User says when
replying to message it puts the subject at the top of the e-mail - I logged
into the old version and it shows subject as the top field in the form.   Is
there an individual display option for this display order when replying ?

Thanks





--
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] inbox.sent empty in Outlook - Update

2006-07-08 Thread Dave Shanefelter
Title: Message



I want to give an update & 
provide more info.
 
We use squirrelmail to access 
our unix based imap email server from home or on the road. While at work (in the 
office) we use Outlook 2002 via imap to access our unix based imap email 
server. 
 
A user mentioned to me that 
while they were on the road & using squirrelmail they sent many emails and 
verified that a copy was stored in the squirrelmail inbox.sent folder. When they 
returned to the office & opened Outlook, there were no messages in the 
inbox.sent folder.
They open squirrelmail a second 
time and did confirm that there were messages in the inbox.sent folder, but when 
they returned to outlook, outlook only showed an empty inbox.sent 
folder.
 
After troubleshooting I have 
discovered that, if I create a new folder in squirrelmail and move mail to it, 
or store messages in the "special folders"; inbox.sent, inbox.drafts, or 
inbox.trash, then exit out of Squirrelmail. 
 
Then open outlook, outlook sees 
the new folders created in squirrelmail & "special folders" of 
squirrelmail, but when you open these folders they are empty. 

Also, while in outlook, you can 
not delete or rename these folders, outlook states "no such 
mailbox".
 
After further troubleshooting I 
discovered that any folders created in Outlook can be seen & function 
correctly in Squirrelmail. But, any folder created in Squirrelmail can be seen 
in Outlook but Outlook does not show the contents of these folders and Outlook 
cannot rename or delete these folders.
 
Squirrelmail version 
1.4.0
Outlook 2002 using 
IMAP
 
Can anyone offer a solution or 
additional troubleshooting steps?
 
Thanks
Dave
 
 
 
 

  
  -Original Message-From: Dave Shanefelter 
  [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006 2:37 
  PMTo: squirrelmail-users@lists.sourceforge.netCc: 
  [EMAIL PROTECTED]Subject: inbox.sent empty in 
  Outlook
  Problem:
  inbox.sent empty when viewing 
  in outlook.
   
  In Squirrelmail, when I send 
  an email a copy is placed in the inbox.sent folder, works as 
  expected.
   
  But, at work, we use outlook 
  2002 & IMAP to connect to our unix mail server.
  In Outlook, I see the 
  inbox.sent folder, but when I open it there are no messages, its 
  empty.
   
  Has anyone encountered this 
  issue?
   
  Let me know if more info is 
  needed.
   
  Thanks
  Dave
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] inbox.sent empty in Outlook - Update

2006-07-11 Thread Dave Shanefelter
Additional Info:

IMAP Server - UW IMAP
We ran test 8 and all folders show as working.

After further tests I would like to add the following info:
1. I originally stated "if I create a new folder in squirrelmail and move
mail to it, or store messages in the "special folders"; inbox.sent,
inbox.drafts, or inbox.trash, then exit out of Squirrelmail. Then open
outlook, outlook sees the new folders created in squirrelmail & "special
folders" of squirrelmail, but when you open these folders they are empty."

I would like to update this statement, the "only" folder issue is with
Squirrelmail's special folders.
Outlook can see these special folders, but in Outlook the folders are empty.
Special folders are inbox.sent, inbox.drafts, or inbox.trash

In Squirrelmail I send a email, verify that a copy is placed in the
inbox.sent, exit Squirrelmail, open Outlook, Outlook sees the inbox.sent
folder, but Outlook does not display the contents of the inbox.sent folder.

I can create "new" folders in Squirrelmail and copy mail to them, then open
Outlook and view the "new" folders and their email content.
The only problemed folders our the Squirrelmail Special folders; inbox.sent,
inbox.drafts, or inbox.trash

Thanks
Dave




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tomas
Kuliavas
Sent: Saturday, July 08, 2006 3:34 PM
To: squirrelmail-users@lists.sourceforge.net
Subject: Re: [SM-USERS] inbox.sent empty in Outlook - Update


> I want to give an update & provide more info.
>
> We use squirrelmail to access our unix based imap email server from
> home or on the road. While at work (in the office) we use Outlook 2002 
> via imap to access our unix based imap email server.
>
> A user mentioned to me that while they were on the road & using
> squirrelmail they sent many emails and verified that a copy was stored 
> in the squirrelmail inbox.sent folder. When they returned to the 
> office & opened Outlook, there were no messages in the inbox.sent 
> folder. They open squirrelmail a second time and did confirm that 
> there were messages in the inbox.sent folder, but when they returned 
> to outlook, outlook only showed an empty inbox.sent folder.
>
> After troubleshooting I have discovered that, if I create a new folder
> in squirrelmail and move mail to it, or store messages in the "special 
> folders"; inbox.sent, inbox.drafts, or inbox.trash, then exit out of 
> Squirrelmail.
>
> Then open outlook, outlook sees the new folders created in
> squirrelmail & "special folders" of squirrelmail, but when you open 
> these folders they are empty.
> Also, while in outlook, you can not delete or rename these folders,
> outlook
> states "no such mailbox".
>
> After further troubleshooting I discovered that any folders created in
> Outlook can be seen & function correctly in Squirrelmail. But, any 
> folder created in Squirrelmail can be seen in Outlook but Outlook does 
> not show the contents of these folders and Outlook cannot rename or 
> delete these folders.
>
> Squirrelmail version 1.4.0
> Outlook 2002 using IMAP
>
> Can anyone offer a solution or additional troubleshooting steps?

Name your IMAP server.

Enable SquirrelMail info plugin, run LIST command listed in Test 8 and
compare working and not working folder names.


-- 
Tomas
---signature ends here---


-
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



-
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] inbox.sent empty in Outlook - Update

2006-07-11 Thread Dave Shanefelter
Squirrelmail has created its special folders of:
inbox.sent, inbox.drafts, or inbox.trash

To be more descriptive:
- I open Squirrelmail, the left pane shows Squirrelmail's "special folders"
at the top; inbox.sent, inbox.drafts, or inbox.trash
- I click compose and send a test email.
- I look in Squirrelmail's inbox.sent folder and I see a copy of my test
email.
- I close Squirrelmail and Open Outlook.
- In Outlook I see the inbox.sent folder.
- When I click on the inbox.sent folder to view the folder's contents, the
inbox.sent folder is empty
- In Squirrelmail I see the contents of the inbox.sent, in Outlook I don't.

As an additional test, I just installed Pegasus 4.3.1 Email program.
I setup Pegasus to connect to our IMAP server.
Pegasus can view the contents of the Squirrelmail inbox.sent folder.

I believe there is a bug with Squirrelmail & Outlook.
I understand that Oulook is probably not following industry standards.

I am just wondering if anyone else has ran into this issue and come up with
a workaround?

Thanks
Dave

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tomas
Kuliavas
Sent: Tuesday, July 11, 2006 2:56 PM
To: squirrelmail-users@lists.sourceforge.net
Subject: Re: [SM-USERS] inbox.sent empty in Outlook - Update


If you use uw, why we are talking about inbox.something folders. UW uses
different folder delimiter.

UW configuration preset (conf.pl -> D -> uw) uses different folder names.

Please note that SquirrelMail uw preset uses 'mail/' folder prefix and it
might hide other folders, if you currently use empty folder prefix.

> Additional Info:
>
> IMAP Server - UW IMAP
> We ran test 8 and all folders show as working.
>
> After further tests I would like to add the following info: 1. I 
> originally stated "if I create a new folder in squirrelmail and move 
> mail to it, or store messages in the "special folders"; inbox.sent, 
> inbox.drafts, or inbox.trash, then exit out of Squirrelmail. Then open 
> outlook, outlook sees the new folders created in squirrelmail & 
> "special folders" of squirrelmail, but when you open these folders 
> they are empty."
>
> I would like to update this statement, the "only" folder issue is with 
> Squirrelmail's special folders. Outlook can see these special folders, 
> but in Outlook the folders are empty.
> Special folders are inbox.sent, inbox.drafts, or inbox.trash
>
> In Squirrelmail I send a email, verify that a copy is placed in the 
> inbox.sent, exit Squirrelmail, open Outlook, Outlook sees the 
> inbox.sent folder, but Outlook does not display the contents of the 
> inbox.sent folder.
>
> I can create "new" folders in Squirrelmail and copy mail to them, then 
> open Outlook and view the "new" folders and their email content.
> The only problemed folders our the Squirrelmail Special folders;
> inbox.sent,
> inbox.drafts, or inbox.trash
>
> Thanks
> Dave
>
>
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of 
> Tomas Kuliavas
> Sent: Saturday, July 08, 2006 3:34 PM
> To: squirrelmail-users@lists.sourceforge.net
> Subject: Re: [SM-USERS] inbox.sent empty in Outlook - Update
>
>
>> I want to give an update & provide more info.
>>
>> We use squirrelmail to access our unix based imap email server from 
>> home or on the road. While at work (in the office) we use Outlook 
>> 2002 via imap to access our unix based imap email server.
>>
>> A user mentioned to me that while they were on the road & using 
>> squirrelmail they sent many emails and verified that a copy was 
>> stored in the squirrelmail inbox.sent folder. When they returned to 
>> the office & opened Outlook, there were no messages in the inbox.sent 
>> folder. They open squirrelmail a second time and did confirm that 
>> there were messages in the inbox.sent folder, but when they returned 
>> to outlook, outlook only showed an empty inbox.sent folder.
>>
>> After troubleshooting I have discovered that, if I create a new 
>> folder in squirrelmail and move mail to it, or store messages in the 
>> "special folders"; inbox.sent, inbox.drafts, or inbox.trash, then 
>> exit out of Squirrelmail.
>>
>> Then open outlook, outlook sees the new folders created in 
>> squirrelmail & "special folders" of squirrelmail, but when you open 
>> these folders they are empty. Also, while in outlook, you can not 
>> delete or rename these folders, outlook
>> states "no such mailbox".
>>
>> After further troubleshooting I discovered that any folders created 
>> in Outlook

[SM-USERS] SMTP Authentication

2006-12-22 Thread dave nash
Hi,

I just tried out Squirrel mail.  I have a question regarding authentication for
SMTP.  I want to use my ISP's SMTP server to send mail, and I want to provide my
ISP username and password.  I can't see where to set that.  Can anyone help?

Thanks

Dave
-- 

-
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


Re: [SM-USERS] SMTP Authentication

2006-12-22 Thread dave nash
Hi Fredrik.

> > I just tried out SquirrelMail. I have a question regarding authentication
> > for SMTP. I want to use my ISP's SMTP server to send mail, and I want to
> > provide my ISP username and password. I can't see where to set that. Can
> > anyone help?
>
> It's in the manual: http://www.squirrelmail.org/docs/admin/admin.html#toc5.3

Ah, I missed that.  So with 1.4.9a I need to configure a local smtp server.  But
with 1.5.1. (which I'm not using) I can configure it in SquirrelMail.

I'm not really sure what it means by "If you use older SquirrelMail version and
want to use single user/password for SMTP authentication"

Is it suggesting that there is an alternative to "single user/password"?

Thanks

Dave
-- 

-
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


Re: [SM-USERS] SMTP Authentication

2006-12-23 Thread dave nash
from Tomas Kuliavas <[EMAIL PROTECTED]>:

> 
> http://sourceforge.net/support/tracker.php?aid=1531889
> 

Thanks Tomas, this looks encouraging.

Thanks for all the responses on this issue too.

Dave
-- 


-
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


Re: [SM-USERS] [SM-DEVEL] Proposed changes to squirrelmail.org

2007-01-29 Thread dave nash
Marc wrote: 

> I agree on removal of our email addresses from the about page. That would
> save a lot of noise in our inbox.

Another suggestion:  It seems that end-users are not always clear what
SquirrelMail is, at least on the difference between a webmail system and the
Imap server itself.  This, and the prominance of the Squirrelmail logo on the
default login screen, can lead people to think that SM is the name/provider of
their email.

Perhaps a change to the default login screen could help prevent such 
misconceptions.

Dave
-- 

-
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


Re: [SM-USERS] Problems with "mark read" / "compatibility"

2007-02-10 Thread Dave Kliczbor
hello there,

Paul Lesniewski schrieb:
> However, I kindly just spent an hour updating the plugin in various
> ways.  Still might not be 100% compliant with all new standards (no
> offense to Dave, standards have changed a lot lately), but it seemed
> to work at first blush and might be release-able, of course totally at
> the discretion of the maintainer (Dave).  See attached.

Woah, thanks for updating the package. I'm a bit occupied lately and did
not even find time to upgrade squirrelmail (i'm still on 1.4.4).

So, if anyone wants to take over the maintaining of the "mark read"
plugin, I'd be happy to transfer the maintainership. As for that update
you sent me, I'll have to dig out the access data for the server...

cya
 Dave

-
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] Transfer of maintainership of 'mark_read' (was: Problems with 'mark read' / 'compatibility')

2007-02-17 Thread Dave Kliczbor
Hi, Paul, Fredrik, and list,

Sorry for not answering for some days, I had a bit of problems here with
my mails. I hate it when my server goes down just after I go on a trip...

Paul Lesniewski schrieb:
> On 2/13/07, Fredrik Jervfors <[EMAIL PROTECTED]> wrote:
>> >> Since no one else has stepped up (that I know of), I volunteer to
>> >> maintain it. I couldn't find any license information in the plugin, so
>> >> I'm going to
>> >> use GPL unless you say something else. Please send your
>> >> confirmation to
>> >> the list (to make it official).

Uh, thanks for the notice. I didn't notice I forgot that... GPL it is,
then, although I think BSD-style would not hurt.

> Whomever takes this up, I am attaching a very minor revision to the
> tarball I sent earlier.  Needed a change to the info() function in
> setup.php.

I think I can assume you meant to name it
"mark_read-1.4.2-1.4.2.tar.gz", right?

However, I just uploaded your release.

> Dave you out there?  Want to give your final "you can have it" or can
> we convince you to stick around?

Somehow I hesitate to "give it away" ... but then, knowing full well
that I can't maintain it as good as Fredrik, I think it's better to let
it go.

Conclusion: I hereby officially transfer maintainership of the mark_read
plugin to Fredrik Jervfors. The license is GPL2, as far as applicable.

cya,
 Dave

-
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


Re: [SM-USERS] ERROR: Could not append message to mail/sent & ERROR:Could not complete request.

2007-04-19 Thread dave nash
Sorry, I meant to send this to the list not personal email.

from Deborah Roelfsema <[EMAIL PROTECTED]>:

> I really need your help, I have been asked to answer and reply to emails
> for a voluntary organisation (none of them are computer literate and I'm
> not much better).

Is the email server (IMAP server) running on their own computer or one provided
by a hosting company or ISP?

> ERROR : Could not complete request.
> Query: EXPUNGE
> Reason Given: EXPUNGE failed: Unable to extend mailbox: Disk quota
> exceeded

Sounds like you need to talk to the administrator of the computer on which the
IMAP server is running.  It may have run out of disk space (or at least exceeded
the user's quota, as suggested by the error message).  Or it might be a quota in
the IMAP server.

If that is you then you need to allocate more space to the user, either at the
operating system level or the IMAP server.  I can't tell you how to do those.

Aside, I also don't know why EXPUNGE fails if the user disk quota is exceeded,
but I'm no IMAP expert - perhaps the email administrator would know.

> Solution: Remove unneccessary messages from your folder and start with
> your Trash folder.
>

Did you try this?  It is suggesting that you empty your "Trash" folder first.
Perhaps this operation doesn't require extra disk space as removing messages
from other folders does.

Good luck.

Dave
-- 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
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] Replying to list (was Re: Spam Sent From WebMail)

2007-09-06 Thread dave nash

> > 
> > Not so.  I run Thunderbird 2.0.0.6, and a simple "reply" goes to the
> > poster's e-mail address, not back to the list.
> 
> Check your settings, then.  I use Claws, and hitting "reply" goes back
> to the mailing list just fine.
> 
> Although, upon inspecting the message headers, I sure don't *see* a
> Reply-To: header in there (maybe I'm just missing it?).  So now I'm not
> sure *why* my hitting reply goes back to the list address :-)
> 

I am using my ISP's webmail (it uses IMP) and when I click REPLY it goes to the 
sender.

Dave
-- 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
--
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] Replying to list (was Re: Spam Sent From WebMail)

2007-09-06 Thread dave nash
David Guntner wrote:

> [Attribute lines are nice - helps people to know who said what :)]

Yeah sorry, I accidentally deleted it!

Dave
-- 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
--
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] Inbox DNS Error

2008-03-20 Thread Dave Hopkins
Hello Everyone:

I have one user on a 300 user network with the following error:

She goes to access her mail through Squirrelmail and the left frame comes up
showing her folder list.  The right side frame displays a "The page cannot
be displayed" DNS error.  Only for her Inbox.  I can look in other folders
and everything is displayed correctly.

All other users' mail is displayed perfectly.  Any suggestions?  I
appreciate your time, Dave.


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
-
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


Re: [SM-USERS] Inbox DNS Error - SOLVED

2008-03-20 Thread Dave Hopkins
10,000 messages in her Inbox.  Knocked it back to 2500 & it came right up. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dave
Hopkins
Sent: Thursday, March 20, 2008 3:56 PM
To: squirrelmail-users@lists.sourceforge.net
Subject: [SM-USERS] Inbox DNS Error

Hello Everyone:

I have one user on a 300 user network with the following error:

She goes to access her mail through Squirrelmail and the left frame comes up
showing her folder list.  The right side frame displays a "The page cannot
be displayed" DNS error.  Only for her Inbox.  I can look in other folders
and everything is displayed correctly.

All other users' mail is displayed perfectly.  Any suggestions?  I
appreciate your time, Dave.


-
This SF.net email is sponsored by: Microsoft Defy all challenges.
Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
-
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


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
-
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] Re-Installed.

2002-12-21 Thread dave derry
I am running windows 200 adv. server and the latest squirrelmail

i have had sm working great in the past.. I LOVE IT!  But i recenty had to re-image my 
server and setup SM again.. however after logging into squirrelmail i receive the 
following error..:

PHP Notice: Undefined variable: _SESSION in 
C:\Inetpub\webpub\squirrelmail\src\global.php on line 108 PHP Warning: Cannot send 
session cookie - headers already sent in C:\Inetpub\webpub\squirrelmail\src\global.php 
on line 99 PHP Warning: Cannot send session cache limiter - headers already sent in 
C:\Inetpub\webpub\squirrelmail\src\global.php on line 99 PHP Warning: Cannot add 
header information - headers already sent in 
C:\Inetpub\webpub\squirrelmail\src\redirect.php on line 43 PHP Warning: Cannot add 
header information - headers already sent in 
C:\Inetpub\webpub\squirrelmail\functions\i18n.php on line 1195 PHP Warning: Cannot add 
header information - headers already sent in 
C:\Inetpub\webpub\squirrelmail\src\redirect.php on line 76 PHP Warning: Cannot add 
header information - headers already sent in 
C:\Inetpub\webpub\squirrelmail\src\redirect.php on line 116 PHP Warning: Cannot add 
header information - headers already sent in 
C:\Inetpub\webpub\squirrelmail\src\redirect.php on line 171 

i've tried just about everything i could think of to fix the error.  and now i reach 
out to those of you who may be able to help..

thank you

Dave Derry

-Original Message-
From: Duke [mailto:[EMAIL PROTECTED]]
Sent: Saturday, December 21, 2002 4:10 PM
To: [EMAIL PROTECTED]
Subject: [SM-USERS] error listing folders, using courier-imap


Hi, I've recently setup SquirrelMail, and it's running well.  All of my
accounts work, except for my main account.  When listing the folders on
the side, the following error occurs before all my folders are listed:

ERROR : Could not complete request.
Query:STATUS "INBOX.ebiz" (UNSEEN)
Reason Given: Invalid mailbox

Before the "ebiz" folder, I have another folder which contains subfolders
not all of which are listed.  "ebiz" is also a folder containing
subfolders.
I've gone through the SqMail FAQ, trying all of the suggestions listed for
courier-imap, but none seemed to help.  For reference, here are some of my
config variables which I think may be relevant:

$imap_server_type = 'courier';
$default_folder_prefix = 'INBOX.';
$auto_create_special = false;
$default_sub_of_inbox = true;
$show_contain_subfolders_option = false;

Also, for the special folders trash, sent, and drafts, should I list those
as $trash_folder = 'INBOX.Trash'; for example, or just
$trash_folder = 'Trash';  ?

I'm running SqMail 1.2.10, with courier-imap 1.5.1, on a Gentoo Linux
System.  Apache 1.3.27, and PHP 4.2.3.

Any suggestions?

Thanks!





---
This SF.NET email is sponsored by: Order your Holiday Geek Presents Now!
Green Lasers, Hip Geek T-Shirts, Remote Control Tanks, Caffeinated Soap,
MP3 Players,  XBox Games,  Flying Saucers,  WebCams,  Smart Putty.
T H I N K G E E K . C O M   http://www.thinkgeek.com/sf/
--
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


---
This SF.NET email is sponsored by: Order your Holiday Geek Presents Now!
Green Lasers, Hip Geek T-Shirts, Remote Control Tanks, Caffeinated Soap,
MP3 Players,  XBox Games,  Flying Saucers,  WebCams,  Smart Putty.
T H I N K G E E K . C O M   http://www.thinkgeek.com/sf/
--
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] Please Help!

2002-12-22 Thread dave derry
Well I am another step closer to getting my problem with squirrelmail solved..  I can 
not access the login screen without a proble.  However I am now receiving an error 
"You must be logged in to access this page"  everytime I enter a valid username and 
password

can someone help please !!


Thank you 



Dave Derry


---
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)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



[SM-USERS] Please Help! **updated!

2002-12-22 Thread dave derry
Well I am another step closer to getting my problem with squirrelmail solved..  I can 
not access the login screen without a proble.  However I am now receiving an error 
"You must be logged in to access this page"  everytime I enter a valid username and 
password

Just incase, my configurations is the latest stable version of squirrelmail, windows 
2000 Adv. Server, and Exchange 2000
i have installed the latest PHP as well as perl.  but still now luck.

can someone help please !!


Thank you in advance!  Happy Holidays!





---
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)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



RE: [SM-USERS] database permissions?

2002-12-23 Thread dave derry
Thanks to all who aided me in getting my Squirrelmail up and running!!!


however I have just one more issue.. not pressing tho..

when i compose an email there an error on the bottom of my screen

Fatal error: Cannot redeclare addressbook_init() (previously declared in
C:\Inetpub\webpub\squirrelmail\functions\addressbook.php:52) in
C:\Inetpub\webpub\squirrelmail\functions\addressbook.php on line 52

can anyone help.. thanks


---
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)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



RE: [SM-USERS] Prepare 1 set of defaults for all new users

2002-12-29 Thread dave derry

thank you i was wondering that myself.
that being said, if one were to create a user acount set all preferences the way they 
would like everyone to initially see things look.  and then simply rename/copy the 
users prefs file to default_pref  that would then set following users prefs that way?


thanks a bunch


-Original Message-
From: Jonathan Angliss [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 30, 2002 12:36 AM
To: Super Yup-KENT!!
Cc: [EMAIL PROTECTED]
Subject: Re: [SM-USERS] Prepare 1 set of defaults for all new users


Hello Super,
On Sunday, December 29, 2002, Super Yup-KENT!! wrote...

> Hi everyone,

> Do you know if I can configure SM in such a way that if I add new users,
> they all receive the same Folder & Display Preferences?

  Yes, edit the default_pref file in the data/ directory. When new
  users login, they will assume those preferences as default, and they
  can change from there.

-- 
Jonathan Angliss
([EMAIL PROTECTED])



---
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


---
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)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



[SM-USERS] Squirrelmail 1.4.0 rc-1

2002-12-31 Thread dave derry
I have installed a fresh copy of the new squirremail 1.4.0 rc-1 (latest cvs)on my 
server, running exchange server 2000 and i am now receiving the following error after 
logging in:

Fatal error: Failed opening required 'SM_PATHfunctions/global.php' 
(include_path='.;c:\php4\pear') in C:\Inetpub\webpub\squirrelmail\functions\prefs.php 
on line 14

however my previous version of squirrelmail works fine. (1.2.10 cvs from dec 24th i 
believe)

chances are i am forgetting to do something very simple..  if i am i apologise.

BTW there are no Plugins installed currently either.


thank you

Dave Derry


---
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)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



[SM-USERS] help.. still Problem w/ 1.4.0-rc1

2003-01-04 Thread dave derry
I have just downloaded the latest cvs(squirrelmail-20030104_0840-CVS.devel.tar.gz) 
from the squirrelmail website and i am still receiving the same error after logging in

 Fatal error: Failed opening required 'SM_PATHfunctions/global.php'
 (include_path='.;c:\php4\pear') in
 C:\Inetpub\webpub\squirrelmail\functions\prefs.php on line 14

my configuration is: windows 2000 adv server / exchange 2000 / Squirrel Mail 1.4.0 RC1
PHP 4.3 / Active Perl 5.8.0.804

i have not installed any squirrelmail plugins as of yet.

does anyone have any ideas?

thank you

Dave


---
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)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



Re: [SM-USERS] courier imap ,Maildir

2003-01-10 Thread chirag dave
thanks everyone.
but still having problems.
here what i did , i close my sendmail service and turn on postfix . 
using conf.pl i changed sendmail to smtp.

i made changes in main.cf of postfix

this is what i have
# DELIVERY TO MAILBOX
#
# The home_mailbox parameter specifies the optional pathname of a
# mailbox file relative to a user's home directory. The default
# mailbox file is /var/spool/mail/user or /var/mail/user. Specify
# "Maildir/" for qmail-style delivery (the / is required).
#
#home_mailbox = Mailbox
home_mailbox = Maildir/


now i am not able to send the e mail also. it send the e mail but not 
reaching to the destination. in sq mail i see folder like this

inbox
trash
draft
send
inbox
trash
draft
send

any suggestion ?

thanks


chirag wrote:

i have question regarding using squirrelmail with courier imap

i am using : red hat 8.0 ,courier imap ( installed and working ; i am 
able to log on to squirrel mail )
as i learned on courier imap that it only supports IMAP access to 
Maildirs . i do not get how to use that with squirrelmail.
i have Maildir created in my /home directory. but i am not doing 
somthing right.
i am able to send the email ( using SMTP as i guess sendmail does not 
work with coourier imap )

my question is howo to implement Maildir with squirrelmail.

thanks
dave



---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users






---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



[SM-USERS] problems with plugins?

2003-01-10 Thread dave derry
First off I'd like to thank Jonathan Angliss for all his help the last week it has 
paid of and I have squirrelmail 1.4.0 rc1 running rather smoothly.  and also thanks to 
everyone else for all your help as well.

that being said.  i have a new problem noted below..  


are there any known issues with the "Unsafe Image rules" plugin and the "view as html" 
plugin for squirrelmail

the view as html plugin give me the following error when reading an email that 
contains html
Subject: [SM-USERS] Logo
From: "Rajan Mani" <[EMAIL PROTECTED]> 
Date: Fri, January 10, 2003 12:36 
To: [EMAIL PROTECTED] 
Priority: Normal 
Options: 
Fatal error: Call to undefined function: finddisplayentityhtml() in 
C:\Inetpub\webpub\squirrelmail\plugins\view_as_html\setup.php on line 57


and right after i click unsafe image rules in the options i get the following message:

Fatal error: Failed opening required '../src/validate.php' 
(include_path='.;c:\php\includes') in 
C:\Inetpub\webpub\squirrelmail\plugins\unsafe_image_rules\options.php on line 11

i have downloaded both of the plugins from the wesite today and installed them both 
seperately and i get the error.. does not matter if either one or both or many plugins 
are installed. the error is the same.

and looking into the /src/ folder i noticed there is no longer a validate.php there 
could that be causing the problem with the unsafe image rules plugin??? i checked that 
tar of the squirrelmail cvs and it does not contain that file either.


Thanks again everyone.

Dave Derry


---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



[SM-USERS] a couple errors/questions

2003-01-10 Thread Dave Derry
When I send email thru squirrelmail now I get the following 
ERROR:  
Requested action not taken: mailbox unavailable
Server replied: 550 5.7.1 Unable to relay for [EMAIL PROTECTED]

i'm am not at home right now to check.  but i remember seeing an authentication for 
smtp outbound mail for something when i ran config.pl.  would this setting be causing 
the problem? ?(also I receive this error with or without plugins installed)

 
also is there any problem with running the "view as html" plugin with squirrelmail 
1.4.0 rc1?
as I receive the following error when attempting to view a email containing html.(i 
have no other plugins installed when i receive the error below.)

Subject:   [SM-USERS] sair da lista 
From:   "Rubens Andrade - BOL" <[EMAIL PROTECTED]> 
Date:   Fri, January 10, 2003 3:04 
To:   [EMAIL PROTECTED] 
Priority:   Normal 
Options:   View Full Header |  View Printable Version  | View Message details 
Fatal error: Call to undefined function: finddisplayentityhtml() in 
C:\Inetpub\webpub\squirrelmail\plugins\view_as_html\setup.php on line 57
 
I left the email info incase anyone would like to check it.

i hope someone can help.

thanks again for the great support and help from all of you!



---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



Re: [SM-USERS] courier imap ,Maildir

2003-01-13 Thread chirag dave

hi


i finally made courier-imap + postfix to work . but there is little 
proble its just working for one user only .for other user its give this 
error
ERROR : Could not complete request.
Query:EXAMINE "INBOX.Trash"
Reason Given: Invalid mailbox

what i notised that in other user Maildir this two files are missing

courierimapsubscribed and courierimapuiddb , is this two files auto genearted ? if i try to copy this files two this folder still it does not work .

any help on creating this files.
i did not create this file on first user ,it generated automatically only.

thanks



Derek Battams wrote:

thanks ,
this time i am trying with netscape mail client . IMAP does work since
it log me in.
when i was sending mail from sq mail mail come in send folder but it
does not reach the destination ( no errror messege )

now when i am using my netscape client , it give me arror this error "
an error occurred while sending mail. recipient address rejected.  reply
access denied".
   


I'm going to assume this is a typo and that the error was "relay access
denied".  This means that postfix isn't configured to be an open relay
(which is a very, very good thing).  If the mail was sent via SM it
probably means that postfix isn't configured to relay mail received from
the loopback interface (if you're using localhost as your SMTP server in
SM).  Simply change that option in main.cf and users should then be able
to send email (though IIRC, postfix should accept mail from loopback by
default, but I can't remember for sure).
 

another question when i run conf.pl in option 8 authenticate SMTP , does
it have anything to do ?
   


This shouldn't matter in this case.

 

again i am student and new at all this stuff so please forgive me .
   


You should be very careful when changing the configuration of an SMTP
server accessible via the Internet.  Setting the wrong value in the
configuration can open your server up to many ugly things.  Read the docs
very carefully before implementing configuration changes.



HTH,

Derek





---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


 





---
This SF.NET email is sponsored by: FREE  SSL Guide from Thawte
are you planning your Web Server Security? Click here to get a FREE
Thawte SSL guide and find the answers to all your  SSL security issues.
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en
--
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 ,Maildir

2003-01-13 Thread chirag dave
its working now.
i just observed that courierimapsubscribed and courierimapuiddb files 
are created when you log in squirrelmail. provided option 16 in folder 
option of conf.pl is set true.
maildirmake just create three files curl ,new and temp.

thanks all


chirag dave wrote:


hi


i finally made courier-imap + postfix to work . but there is little 
proble its just working for one user only .for other user its give 
this error
ERROR : Could not complete request.
Query:EXAMINE "INBOX.Trash"
Reason Given: Invalid mailbox

what i notised that in other user Maildir this two files are missing

courierimapsubscribed and courierimapuiddb , is this two files auto 
genearted ? if i try to copy this files two this folder still it does 
not work .

any help on creating this files.
i did not create this file on first user ,it generated automatically 
only.

thanks



Derek Battams wrote:

thanks ,
this time i am trying with netscape mail client . IMAP does work since
it log me in.
when i was sending mail from sq mail mail come in send folder but it
does not reach the destination ( no errror messege )

now when i am using my netscape client , it give me arror this error "
an error occurred while sending mail. recipient address rejected. reply
access denied".



I'm going to assume this is a typo and that the error was "relay access
denied". This means that postfix isn't configured to be an open relay
(which is a very, very good thing). If the mail was sent via SM it
probably means that postfix isn't configured to relay mail received from
the loopback interface (if you're using localhost as your SMTP server in
SM). Simply change that option in main.cf and users should then be able
to send email (though IIRC, postfix should accept mail from loopback by
default, but I can't remember for sure).



another question when i run conf.pl in option 8 authenticate SMTP , 
does
it have anything to do ?


This shouldn't matter in this case.




again i am student and new at all this stuff so please forgive me .



You should be very careful when changing the configuration of an SMTP
server accessible via the Internet. Setting the wrong value in the
configuration can open your server up to many ugly things. Read the docs
very carefully before implementing configuration changes.



HTH,

Derek





---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives: 
http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users








---
This SF.NET email is sponsored by: FREE SSL Guide from Thawte
are you planning your Web Server Security? Click here to get a FREE
Thawte SSL guide and find the answers to all your SSL security issues.
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en
--
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: FREE  SSL Guide from Thawte
are you planning your Web Server Security? Click here to get a FREE
Thawte SSL guide and find the answers to all your  SSL security issues.
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en
--
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] Empty substring error message

2003-01-13 Thread Dave Jones
Title: Empty substring error message






I've just installed a new RH 7.3 box using the qvcs-guide (qmail, vmailmgr, courier, etc), however, I replaced the squirrelmail 1.2.9 with 1.2.10.  Everything seems to work fine, however, whenever I follow one of the links at the top of the page, i.e. Options, Help, etc.  I get these messages on the screen:

Warning: Empty substring in /usr/share/squirrelmail/functions/imap_mailbox.php on line 269

Warning: Empty substring in /usr/share/squirrelmail/functions/imap_mailbox.php on line 282

I went to that file and the code in and around those lines is:


/* Count number of delimiters ($delimiter) in folder name */

    $mailbox = trim($line_lsub[$g]);

    $dm_count =  substr_count($mailbox, $delimiter);

    if (substr($mailbox, -1) == $delimiter) {

    /* If name ends in delimiter, decrement count by one */

    $dm_count--;

And


$indent = $dm_count - ( substr_count($folder_prefix, $delimiter));

    if ($indent > 0) {

    $boxesall[$g]['formatted']  = str_repeat('  ', $indent);

    }

Respectively.


Again, everything works, but I don't want my users seeing all of these errors.  Any ideas?


Thanks,


David



"It is the soldier, who salutes the flag,

Who serves beneath the flag,

And whose coffin is draped by the flag,

Who allows the protester to burn the flag."

--Charles M. Province






[SM-USERS] Mail_fetch/Fetch mail problems

2003-01-16 Thread Dave Jones
Title: Mail_fetch/Fetch mail problems






I am using SM 1.2.10.  The mail_fetch plugin came with it.  When I configure my pop server in mail fetch, I include my username and password, as one normally would.  However, every time I fetch the mail, it comes back saying "invalid username or password".  So I configured mail fetch without the password and was prompted for it when I went to fetch it.  This worked.  So I turned debugging on in the class.POP3.php file and tested it.  With the username/password "hardcoded" into the mail fetch program, it passes my username fine to the pop server but I get this from the password line:

[PASS 0b62566e053f053a0e3c566d5760] GOT [-ERR invalid user name or password.]


That PASS statement changes slightly but obviously, that's not my password.  When I configure the server where it prompts me to enter my password, it works and I see this:

[PASS mypassword] GOT [+OK davjon is welcome here]


Also, if I check the "encrypt password" box, it doesn't stay there.  I checked with a friend who, I believe is running SM 1.27, and his stays there.

Any advice?


David Jones





RE: [SM-USERS] Mail_fetch/Fetch mail problems

2003-01-16 Thread Dave Jones
Thanks for your reply.  That worked after doing it twice.  Before I
would just delete the entire "server" entry but that didn't work.  Your
solution did.  Thank you very much for that advice.

Dave

-Original Message-
From: Jonathan Angliss [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 16, 2003 1:00 PM
To: Dave Jones
Cc: [EMAIL PROTECTED]
Subject: Re: [SM-USERS] Mail_fetch/Fetch mail problems


Hello Dave,
On Thursday, January 16, 2003, Dave Jones wrote...

> I am using SM 1.2.10. The mail_fetch plugin came with it. When I 
> configure my pop server in mail fetch, I include my username and 
> password, as one normally would. However, every time I fetch the mail,

> it comes back saying "invalid username or password". So I configured 
> mail fetch without the password and was prompted for it when I went to

> fetch it. This worked. So I turned debugging on in the class.POP3.php 
> file and tested it.

  I've noticed a similar kind of problem myself, but not had chance to
  investigate it. I have found however that if you go back in, and
  modify the server, and re-enter and resave the password, the problem
  goes away. So I think it might be something trivial in the decoding
  of the string. It's something I'll try getting to look at.

-- 
Jonathan Angliss
([EMAIL PROTECTED])



---
This SF.NET email is sponsored by: Thawte.com
Understand how to protect your customers personal information by implementing
SSL on your Apache Web Server. Click here to get our FREE Thawte Apache
Guide: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0029en
--
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] QVCS install

2003-01-16 Thread Dave Jones
Title: QVCS install






I know this may not be related to SM, but I was hoping someone could point me in the right direction.  I have installed Redhat 7.3 and used the qvcs-guide to install Qmail, Vmail Manager, Courier-imap and SM 1.2.10.  I'm running into a strange problem where when I send e-mail to myself, it never shows up in the "Inbox" within SM.  It works sometimes and it doesn't work other times.  I setup a new user and it receives mail fine.  I actually deleted myself and readded and it started working but it's happening again.  The mail server is getting the mail because I see it in the /home/dom/mydomain/users/myusername/tmp, but it's not being moved to /home/dom/mydomain/users/myusername/cur.

Any insights?  I've looked in my /var/log/messages and there's nothing there, as well as in my /etc/httpd/logs/error_log and access_log.  I haven't seen any courier-imap specific logs.

David Jones


"It is the soldier, who salutes the flag,

Who serves beneath the flag,

And whose coffin is draped by the flag,

Who allows the protester to burn the flag."

--Charles M. Province






[SM-USERS] qvcs

2003-01-23 Thread Dave Jones
Title: qvcs






Matt,


You wrote:


I have just re-installed RH 7.3, with squirrelmail, and qmail..  installed per the QVCS guide..  my problem is that my users are able to send mail with no problems, but cannot receive it.  when in the root acct, doing a su (username) get into the users directory i get "bash-205a$"  this may be a different problem, but it is only occurring on the users that cannot receive their emails. the users do have a Maildir in there home directory, but nothing is in them.  any ideas?

--


The qvcs-guide is based on vmailmgr, so you don't actually have a system account for all of your users.  Are you getting a rejection letter saying the user doesn't exist?  If so, you're setting your users up in the wrong place.  You need to either use the vadmin plugin that installs with the qvcs or, 'su - myvirtualdomain.com' and then type 'vadduser joe' (without the quotes).  Not sure if that's the case with you or not.  Let me know if I can help.  I've built/rebuilt using the qvcs-guide 3-4 times.

Dave


"Democrats will trample over a thousand poor people to throw a rock at a rich man." --Tom Adkins of "The Common Conservative"




RE: [SM-USERS] Can't register session

2003-01-23 Thread dave derry


Out of curiosity, do the plugins work with squirrelmail 1.40 rc1 as of yet..  I would 
like to move to squirrelmail 1.40 rc1 but previously I was having issues, with the 
display as html, weather, and unsafe image rules plugins..  as to my understanding 
there were some changes / moves to some files.


---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



RE: [SM-USERS] IIS Installation problem: Bad request: LOGIN failed

2003-01-31 Thread dave derry
what squirrelmail version are you using.. actually that is pretty irrelevant.  you 
have to modify the redirect.php.. i'll paste the info below.. (the redirect.php file 
is in the src folder under the squirrelmail folder.

>

replace the 'header("Location: $redirect_url");' in src/redirect.php with the line 
'echo "Enter";'. See 
more at
http://sourceforge.net/tracker/index.php?func=detail&aid=542724&group_id=311&atid=100311
This cuz SM had a redirection/cookie problem so it didnt log in even if it had 
validated USER and PASSWORD on the IMAP. These replacements made SM work (for me).


-Original Message-
From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 31, 2003 5:20 PM
To: [EMAIL PROTECTED]
Subject: [SM-USERS] IIS Installation problem: Bad request: LOGIN failed


Hi guys,

I thought I'd try this s/w out, but I haven't had much luck with the
installation. I think it might have to do with sessions... ?

Setup: IIS on win2k, with the latest stable PHP. I have been testing the PHP
setup, and that should work fine. For the moment I have set full rights to
"Everyone" on the PHP and the SM dirs, just to confirm that that wasn't a
problem. The config-files should be fine(?). The IMAP server is running on
the same machine, and other clients can connect fine to it.

...but when I try to login through SM, I get to a frames page where the main
frame contains (the other frames are empty):
ERROR:
Bad request: LOGIN failed
Read data: [empty]

If I trying using credentials that do not exist on the IMAP-server, then I
get a similar message, but without frames. I have also tried it connecting
with my Office's Exchange server, with the same result.

Any hints/tips/comments?

Thanks!



Hugo Ahlenius <[EMAIL PROTECTED]>





---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



RE: [SM-USERS] Images are removed

2003-01-31 Thread dave derry
there is a plugin you can Install to view unsafe images by default.  not sure if it 
works with Release 1.4.0 RC2a.  take a look at the plugins page tho.
http://www.squirrelmail.org/plugins.php

have a good day.

D Derry


-Original Message-
From: Marc S. Hopkins [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 31, 2003 12:16 PM
To: [EMAIL PROTECTED]
Subject: [SM-USERS] Images are removed


When trying to view an e-mail with any image attached, mailers,
advertisements or images attached from outlook users, I get the following
message:  "Image has been removed for security reasons" in red letters.  I
turned on "View as HTML" in Display Options.  Note:  there is a link at
the bottom of the images that says:  view usafe image.  When I click that
link, the image is displayed properly.  Is there a setting that I'm
missing in display options?  PHP4 Redhat8.0 Squirrelmail version 1.2.10
Browsing with IE 6

thanks.


Marc S. Hopkins
grid4 Communications
248-649-9444 Work
248-649-9440 Fax
www.grid4.com




---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



[SM-USERS] Php Warning on new install

2003-04-01 Thread Dave Carrera
Hi All,

New to SM and this list so sorry if this has been already covered.

I am not using the php.ini on my FreeBSD box so I don’t know how to get
rid of this warning.

"Warning: Unknown(): Your script possibly relies on a session
side-effect which existed until PHP 4.2.3. Please be advised that the
session extension does not consider global variables as a source of
data, unless register_globals is enabled. You can disable this
functionality and this warning by setting session.bug_compat_42 or
session.bug_compat_warn to off, respectively. in Unknown on line 0"

I am using the DSO of Php in apache.

Other than that it works beautifully and with the minimum of config
adjustments and fuss. Very Good *

Any help or advice will be most appreciated.

I have looked at the faqs and known issues on the SM site but no mention
of this that I can find.

Dave C

 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 



---
This SF.net email is sponsored by: ValueWeb:
Dedicated Hosting for just $79/mo with 500 GB of bandwidth!
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/
--
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] Php Warning on new install

2003-04-01 Thread Dave Carrera
Have downloaded the latest CVS
squirrelmail-20030401_0843-CVS.stable.tar.gz

Can I just upload and over write the /functions and /src dirs from the
CVS to update my stable version?

I Ask cause everything else looks the same...

Thanks for the advice

Dave C  

-Original Message-
From: Jonathan Angliss [mailto:[EMAIL PROTECTED] 
Sent: 01 April 2003 20:43
To: Dave Carrera
Cc: [EMAIL PROTECTED]
Subject: Re: [SM-USERS] Php Warning on new install


Hello Dave,
On Tuesday, April 01, 2003, Dave Carrera wrote...

> Hi All,

> New to SM and this list so sorry if this has been already covered.

> I am not using the php.ini on my FreeBSD box so I don?t know how to 
> get rid of this warning.

> "Warning: Unknown(): Your script possibly relies on a session 
> side-effect which existed until PHP 4.2.3. Please be advised that the 
> session extension does not consider global variables as a source of 
> data, unless register_globals is enabled. You can disable this 
> functionality and this warning by setting session.bug_compat_42 or 
> session.bug_compat_warn to off, respectively. in Unknown on line 0"

> I am using the DSO of Php in apache.

Try upgrading to the latest CVS version of the branch you have
installed. I believe I fixed this particular 'error'.

-- 
Jonathan Angliss
([EMAIL PROTECTED])



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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


RE: [SM-USERS] Php Warning on new install

2003-04-01 Thread Dave Carrera
Hi again,

I have uploaded (full overwrite as you suggested) the latest cvs and the
error still persists :-(

I have downloaded the latest cvs of 1.4 to see if it handles this minor
issue.

My Server Setup is:

Apache 1.3x
Php 4.3.0
Running Php as DSO not using php.ini
FreeBSD 4.7 stable

The error dose not affect the functionality of SM but just looks ugly
having an error left and bottom of page.

I will let you know my results of the 1.4 version.

Dave C


-Original Message-
From: Jonathan Angliss [mailto:[EMAIL PROTECTED] 
Sent: 01 April 2003 20:54
To: Dave Carrera
Cc: [EMAIL PROTECTED]
Subject: Re: [SM-USERS] Php Warning on new install


Hello Dave,
On Tuesday, April 01, 2003, Dave Carrera wrote...

> Have downloaded the latest CVS 
> squirrelmail-20030401_0843-CVS.stable.tar.gz

> Can I just upload and over write the /functions and /src dirs from the

> CVS to update my stable version?

> I Ask cause everything else looks the same...

If you're using the 1.2 branch, and downloaded the .stable file, then
yes. Check which version you are using, and download the appropriate
tarball for that version. Apart from that, yes, you should be able to
just extract functions/ and src/ dirs over the top. You might just want
to extract the whole lot over the top so you get other fixes in there as
well... *NOTE* that will not touch your config.php file, nor your user
preferences.

-- 
Jonathan Angliss
([EMAIL PROTECTED])



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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


RE: [SM-USERS] Php Warning on new install

2003-04-02 Thread Dave Carrera
Hi again

The error is shown at all time in all folders down the bottom half of
the left frame and along the bottom frame.

I do know what the complaint is as far as Php goes as I develop Php apps
and on my windoze box I got rid of it via the php.ini as the error
explains.

But using the DSO there's no php.ini on freebsd so have not got an idea
who to get rid of it.

Hope this helps in some small way

Dave C

P.S SM is a very nice app all the same ;-)

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Jonathan Angliss
Sent: 02 April 2003 16:09
To: [EMAIL PROTECTED]
Subject: Re: [SM-USERS] Php Warning on new install


Hello Dave,
On Tuesday, April 01, 2003, Dave Carrera wrote...

> I have uploaded (full overwrite as you suggested) the latest cvs and 
> the error still persists :-(

> I have downloaded the latest cvs of 1.4 to see if it handles this 
> minor issue.

Is there mail in that particular folder? Do you get it in all folders,
or just certain folders? I've been battling with this one for a while,
and with no details from PHP on what they changed in their code, it's
difficult to work out what is "broken".

-- 
Jonathan Angliss
([EMAIL PROTECTED])



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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


RE: [SM-USERS] Php Warning on new install

2003-04-02 Thread Dave Carrera
Hi Jonathan

What I mean by bottom is the Bottom half of the left frame. Mail boxes
on the top bit error on the Bottom.

I will try the tip with php.ini and see if that clears it up.

Dave C

-Original Message-
From: Jonathan Angliss [mailto:[EMAIL PROTECTED] 
Sent: 02 April 2003 18:34
To: Dave Carrera
Cc: [EMAIL PROTECTED]
Subject: Re: [SM-USERS] Php Warning on new install


Hello Dave,
On Wednesday, April 02, 2003, Dave Carrera wrote...

> Hi again

> The error is shown at all time in all folders down the bottom half of 
> the left frame and along the bottom frame.

So it's on every page, regardless of mail count? Even on the left frame?
Hrm... that gives me a new hint. What do you mean by bottom frame? We
only have two frames, left side (folder listing), and right side (mail
listing).

> But using the DSO there's no php.ini on freebsd so have not got an 
> idea who to get rid of it.

You should still be able to use a php.ini file... Otherwise you just
cannot modify settings without altering your httpd.conf file.  Create a
file in your webtree, and call it test.php, inside it put:

  

Find out where it is looking for a php.ini file, and you should be able
to drop one in there.

> Hope this helps in some small way

> Dave C

> P.S SM is a very nice app all the same ;-)

Glad to hear ;)

-- 
Jonathan Angliss
([EMAIL PROTECTED])



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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


RE: [SM-USERS] Php Warning on new install

2003-04-02 Thread Dave Carrera
Issue resolved (hurrah) :-)

OK even if you are using DSO or not you NEED to have the php.ini in the
path it wants to see it.

Edit the vars that are complaining (under sessions near the bottom of
the file) and anything else that takes you fancy.

Restart httpd and wallop SM know works in ALL it glory.

Make sure you use the latest CVS ver.

Thanks Jonathan for all you help and I hope this explanation helps
someone else.

Dave Carrera

http://www.ephgroup.com
Secure Hosting Accounts for everyone.  

-Original Message-
From: Jonathan Angliss [mailto:[EMAIL PROTECTED] 
Sent: 02 April 2003 18:34
To: Dave Carrera
Cc: [EMAIL PROTECTED]
Subject: Re: [SM-USERS] Php Warning on new install


Hello Dave,
On Wednesday, April 02, 2003, Dave Carrera wrote...

> Hi again

> The error is shown at all time in all folders down the bottom half of 
> the left frame and along the bottom frame.

So it's on every page, regardless of mail count? Even on the left frame?
Hrm... that gives me a new hint. What do you mean by bottom frame? We
only have two frames, left side (folder listing), and right side (mail
listing).

> But using the DSO there's no php.ini on freebsd so have not got an 
> idea who to get rid of it.

You should still be able to use a php.ini file... Otherwise you just
cannot modify settings without altering your httpd.conf file.  Create a
file in your webtree, and call it test.php, inside it put:

  

Find out where it is looking for a php.ini file, and you should be able
to drop one in there.

> Hope this helps in some small way

> Dave C

> P.S SM is a very nice app all the same ;-)

Glad to hear ;)

-- 
Jonathan Angliss
([EMAIL PROTECTED])



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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


RE: [SM-USERS] squirrelmail-users@lists.sourceforge.net

2003-04-04 Thread Dave Carrera
Hi --db

Increase the max time limit for php script execution in your php.ini to
60secs. That will sort that one out.

Dave C

http://www.ephgroup.com
Secure Hosting Accounts for everyone.  

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of db
Sent: 04 April 2003 19:37
To: [EMAIL PROTECTED]
Subject: [SM-USERS] [EMAIL PROTECTED]


My users get this error at times

Fatal error: Maximum execution time of 30 seconds
exceeded in /usr/local/squirrelmail-1.2.11/functions/imap_general.php
on line 47

when many users try to login simultaneoulsy...
--db


__
Do you Yahoo!?
Yahoo! Tax Center - File online, calculators, forms, and more
http://tax.yahoo.com


---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.465 / Virus Database: 263 - Release Date: 25/03/2003
 



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/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] Change Max incoming Attachment size.

2003-06-17 Thread Dave Pitman


OK.  I have searched, RTF'd, Googled, and now I'm here.
I need to allow larger attachments into my Squirrel Mail, which sits on a
Clark Connect box.
I have edited php.ini, and upped the maximum_message_size value, to no
avail.
A colleague suggests editing the
/etc/postfix/main.cf  file, but no
occurence of Max_size exist.
Anyone care to point me in the right direction?
TIA

[EMAIL PROTECTED]







---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 10-June-2003


RE: [SM-USERS] PHP error

2003-07-28 Thread Dave Carrera
Title: Message



Hi
 
Look 
at your "php.ini" and do what it says in your error. 
 
Search 
for session.bug_compat_42 or session.bug_compat_warn and make them 
0.
 
Dave 
Carrera
http://www.ephgroup.comSecure Hosting 
Accounts for everyone.  

  
  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Md. Jawed AhmedSent: 28 July 2003 06:08To: 
  [EMAIL PROTECTED]Subject: [SM-USERS] PHP 
  error
  Hi 
  all,
  I am running 
  the latest version of SM (1.4.1) on  Win 2K with PHP 
  4.2.1.
  The web server 
  is IIS.
  
  Can anyone 
  please help me to remove this message which comes on every page. other than 
  that the application is working perfectly well.
  
  ===
  Unknown(): Your script possibly relies on a session 
  side-effect which existed until PHP 4.2.3. Please be advised that the session 
  extension does not consider global variables as a source of data, unless 
  register_globals is enabled. You can disable this functionality and this 
  warning by setting session.bug_compat_42 or session.bug_compat_warn to off, 
  respectively. in Unknown on line 
  0===
  Thanks in 
  advance.
  
  Jawed 
  Ahmed
  
  
  
  
  Md. Jawed 
  Ahmed
  
  =
  Information 
  Systems Division,
  Gujarat 
  Co-operative Milk Marketing Federation,
  Anand - 
  388001,
  Gujarat.
  91-2692-221267
  ===
  
  --- 
  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 
  ---Incoming mail is certified Virus Free.Checked by 
  AVG anti-virus system (http://www.grisoft.com).Version: 6.0.504 / Virus 
  Database: 302 - Release Date: 
24/07/2003


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.504 / Virus Database: 302 - Release Date: 24/07/2003
 


RE: [SM-USERS] PHP error

2003-07-28 Thread Dave Carrera
If you are using Apache, did you restart it ?

Cant help with mercury as I use Cyrus.

Dave Carrera

http://www.ephgroup.com
Secure Hosting Accounts for everyone.  

-Original Message-
From: Md. Jawed Ahmed [mailto:[EMAIL PROTECTED] 
Sent: 28 July 2003 09:10
To: Dave Carrera
Subject: RE: [SM-USERS] PHP error


Dear Dave ,
Thanks for replying so soon.

I have already tried that option...it did not work, first I made those
variables to 'off' 
then after your mail I made them 0...either of them did not work and I got
the 
same error..

one more problem is that whenever I try to login, only those accounts can
login 
who have blank password. If we set some password to the account and try
again 
then I get the error that password is incorrect. 

My mail server is mercury 32 imap.

any help is highly appreciated.

Jawed


On 28 Jul 2003 at 7:07, Dave Carrera wrote:

> 
> Hi
> 
> Look at your "php.ini" and do what it says in your error.
> 
> Search for session.bug_compat_42or session.bug_compat_warn and make 
> them 0.
> 
> Dave Carrera
> http://www.ephgroup.com
> Secure Hosting Accounts for everyone.
> 
> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:squirrelmail-users- [EMAIL PROTECTED] On Behalf Of 
> Md. Jawed Ahmed
> Sent: 28 July 2003 06:08
> To: [EMAIL PROTECTED]
> Subject: [SM-USERS] PHP error
> 
> Hi all,
> I am running the latest version of SM (1.4.1) on Win 2K with PHP 
> 4.2.1. The web server is IIS.
> 
> Can anyone please help me to remove this message which comes on every 
> page. other than that
> the application is working perfectly well.
> 
> ===
> Unknown(): Your script possibly relies on a session side-effect which 
> existed until PHP
> 4.2.3. Please be advised that the session extension does not consider
global variables as a 
> source of data, unless register_globals is enabled. You can disable this
functionality and 
> this warning by setting session.bug_compat_42 or session.bug_compat_warn
to off, 
> respectively. in Unknown on line 0
> ===
> Thanks in advance.
> 
> Jawed Ahmed
> 
> 
> 
> 
> Md. Jawed Ahmed
> 
> =
> Information Systems Division,
> Gujarat Co-operative Milk Marketing Federation,
> Anand - 388001,
> Gujarat.
> 91-2692-221267
> ===
> 
> --- 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 
> ---
> Incoming mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.504 / Virus Database: 302 - Release Date: 24/07/2003
> 
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.504 / Virus Database: 302 - Release Date: 24/07/2003

Md. Jawed Ahmed

=
Information Systems Division,
Gujarat Co-operative Milk Marketing Federation,
Anand - 388001,
Gujarat.
91-2692-221267
===




---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.504 / Virus Database: 302 - Release Date: 24/07/2003
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.504 / Virus Database: 302 - Release Date: 24/07/2003
 



---
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] Is there an auto empty trash bin config option?

2003-09-04 Thread Dave Carrera
Hi all,

As the subject line says, is there config option to auto empty the trash dir
after a certain time or on exit?

Or an option to just delete trashed emails on trash.

I ask as we have just had to clear over 1gig of trashed emails from various
user accounts and just thought this might be available.

Any help is very much appreciated.

Dave

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.515 / Virus Database: 313 - Release Date: 01/09/2003
 



---
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)95
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] proxy security problem with SM 1.4.1 - shows other users' folders

2003-09-10 Thread Dave Petzinger
Recently, I had my first problem with squirrelmail that i wasn't able to
solve.  I had been running squirrelmail successfully (1.4.1) for the
begining of the schoolyear, but as soon as it had more than a handful of
users connected at the same time, it started showing people the wrong
folders, and sometimes the wrong inbox.  I found that the reason this was
happening was that either SM or Cyrus or Apache interprets every school
computer as our proxy server (Squid unknown version).

Not good...

Anyways, the problem is currently duct taped by changing everybody's
homepage to http://192.168.0.5/src/login.php, but that doesn't fix the
problem if people try to log in using the web address...  they will
continue to get other people's folders.

Has anyone seen this before?  is there something obvious that I'm missing?

thanks a lot,

dave


---
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


[SM-USERS] Fatal errors accessing admin

2003-09-13 Thread Dave McFadden
running on rh 7.3

With sm 1.2.7 I think.  I was getting the "you must be logged in to access
that screen" for my newest account.  It was working fine everywhere and
the name and password at the users domain worked in my environment.

Found release 1.4.1 and one of the bug fixes was
Fixed problem with \ in passwords/usernames on login
so I upgraded using squirrelmail-1.4.1-0.2.7.x.noarch.rpm

I still seem to be able to send and receive mail (witness this post) but
cannot acess the admin function (vmailmgr?).  Have spent hours reading and
searching and cannot resolve the following.

Warning: Failed opening '../src/validate.php' for inclusion
(include_path='.:/usr/share/pear') in
/usr/share/squirrelmail/plugins/vadmin/vadmin_main.php on line 14

Warning: Failed opening '../src/load_prefs.php' for inclusion
(include_path='.:/usr/share/pear') in
/usr/share/squirrelmail/plugins/vadmin/vadmin_main.php on line 15

Fatal error: Failed opening required 'SM_PATHfunctions/global.php'
(include_path='.:/usr/share/pear') in
/usr/share/squirrelmail/functions/strings.php on line 28

Please help!


---
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


[SM-USERS] Re: PHP memory_limit and attachments (Charles Sprickman)

2003-10-08 Thread Dave Petzinger
I had to do the same thing...  i can't really tell you anything new, but
you're not an anomaly unless i am too!

-dave



-Date: Tue, 7 Oct 2003 18:31:24 -0400 (EDT)
-From: Charles Sprickman <[EMAIL PROTECTED]>
-To: [EMAIL PROTECTED]
-Subject: [SM-USERS] PHP memory_limit and attachments
-
-Hi,-
-
-Just a quick question for folks running SQM...  What do you have set for
-"memory_limit" in php.ini?
-
-I'm playing around with an 8M attachment and I had to bump up beyond 48M
-for the de-miming portion of the download to complete.  That seems a bit
-extreme.  Is there a good rule of thumb for this (meaning set it to X MB
-for attachments sized X MB?)?-
-
-Thanks,
-
-Charles
-


---
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
--
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] I think its a good question

2003-10-24 Thread Dave Basener
I waited until the SM gurus spoke because I didn't know the answer to 
you password change question.

Since it sounds like you can only do it through a mechanism that you 
might find undesirable, I am piping up.

We have the set up that you describe, and to allow users to change their 
passwords on "machine B" I have set up Webmin/Usermin - available at for 
free at:  http://www.webmin.com/ .  I tightened down the accessible 
modules in Usermin so that users can only change password, forward email 
and set up vacation mail.

Hope this helps.

Dave Basener

[EMAIL PROTECTED] wrote:

Hi all,

   With a few of you helping i now have the latest  version of SM running & so 
far so good. What i would like to know though is maybe something that cant be 
dont. OK my setup SM interface is on machine A . Mail boxes & sendmail is 
running on machine B. Can this be done. User who has a mail a/c on machine B 
wants to change password of a/c. When pressing the change password pluging 
though i am pretty sure this is sending this request to machine A where they dont 
have an a/c..

I thing i have explained my dilemma clear enough.

Awaiting your thoughts/ideas on this

Cheers

Andrew

 

--
"... be the change you wish to see in the world."  - Gandhi
David Basener   http://www.aurora.edu/~dbasener
System Administrator[EMAIL PROTECTED]
Aurora University  630 844 4889


pgp0.pgp
Description: PGP signature


[SM-USERS] How does message get to the send folder

2003-10-30 Thread Dave Basener
Hi,
This is really just for my education.  I am investigating an email problem
that I am almost certain has nothing to do with SquirrelMail - it has
confused user written all over it.

Anyway, as part of my investigation I *realized* something that I already
knew because I set SquirrelMail up.

I have SM on our SM machine and IMAP on our Mail machine.  SM is set up to
use sendmail on the SM machine, yet, our "sent" messages very cordially
show up in our IMAP server "Sent" file.

I realize that it probably involves the IMAP protocol over the network as
opposed to pixies, but I am just curious how it actually works.  Not
excruciating detail, just a sort of "well, first it does this, and then
this happens ..."  sort of thing.

I realize that I am intruding on your time when you probably have wolves
baying at your doors, but I would greatly appreciate what ever tidbits you
might be able to toss my way.

TIA
Dave Basener


"... be the change you wish to see in the world."  - Gandhi

David Basener   http://www.aurora.edu/~dbasener
System Administrator[EMAIL PROTECTED]
Aurora University  630 844 4889



---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
--
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] How does message get to the send folder

2003-10-31 Thread Dave Basener
Marc,
Perfect - just the level of detail I was looking for.

Thanks much,
Dave Basener


> Storing sent messages in the Sent folder is done by the client, in this
> case SquirrelMail. After created the message we deliver to SMTP or
> sendmail we create the same message again and append it to the users Sent
> mailbox (the sent mailbox can be anything. The user can specify a mailbox
> to be used as Sent mailbox).
>
> See the APPEND command in rfc3501 (IMAP rev1 specification) how APPEND
> works.
>
> If you do not specify the special folder to use as Sent folder (see
> options => folder preferences) then the message is not appended to your
> sent folder.
>
> Regards,
>
> Marc Groot Koerkamp.



"... be the change you wish to see in the world."  - Gandhi

David Basener   http://www.aurora.edu/~dbasener
System Administrator[EMAIL PROTECTED]
Aurora University  630 844 4889



---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
--
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] Modify plugin html_mail

2003-11-14 Thread Dave Basener
As far as I can tell he said:

"Hey list, I am using plugin html_mail and would like to leave  the source
code textarea  and to place only a  at the end of each line.

Thanks.
Wagner"

But, of course, I would never actually spend the time to figure it out ;-)

Dave Basener


pdontthink wrote:

>> 
>> Hey list, I am using > size=2>plugin> face=ARIAL size=2> > size=2>html_mail
>> and would like to > size=2>leave> color=black> the > size=2>source code > size=2>textarea> size=2></p> color=black>> and to place only a
>> <br> face=ARIAL size=2>> at the end of > size=2>each
>> line.
>> Thanks.
>
> huh?
>
>

"... be the change you wish to see in the world."  - Gandhi

David Basener   http://www.aurora.edu/~dbasener
System Administrator[EMAIL PROTECTED]
Aurora University  630 844 4889



---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Upgrading to PHP 4.3.4 and breaking SquirrelMail

2003-12-05 Thread Dave Basener
> Hello,
> I would like to upgrade my version of php on my server. I'm currently
> running 4.2.2, and it has some bugs. I'm running squirrelmail 1.2.5 . I
> was told by my sysadmins that upgrading my php version could break my
> squirrelmail installation. That would be bad as many of my customers use
> it.
>
> Anybody have any idea if this might happen?
>
> Thanks in advance.
>
> --
> Christopher A. Staniar


I am running SM 1.4.2 with PHP 4.3.2  with a nice mix of plugins.

Everything is as smooth as silk!  If many of your customers use it, I
expect you will reap in the kudos when you upgrade.  (Of course, as
always, when you upgrade you will want to protect your current setup until
you are satisfied with the results.)

Dave Basener


"... be the change you wish to see in the world."  - Gandhi

David Basener   http://www.aurora.edu/~dbasener
System Administrator[EMAIL PROTECTED]
Aurora University  630 844 4889



---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] HOW to change the squirrelmail-1.4.2 Directory to something easier.

2003-12-05 Thread Dave Basener
> Hi,
>
> I have just now installed Squirrelmail 1.4.2.  When i change
> the directory name to Squirrelmail-1.4.2 to someother name
> (for EX. webmail) it is not working.  I tried to change the
> config.php for that, but i couldn't find any relevant lines
> which stores the last path.
>
> Kindly help me to solve this issue.
>
>
> Vijaya Kumar .V
> System Administrator
> Crest Communication Ltd.
>

Vijaya,
Don't know what your hosting system is, and I don't know just exactly
where you want to make the path simpler (URL?  shell command?)

Anyway, if it is the URL you wish to make simpler, this is a function of
your Web Server.  For example, if you have installed SM at:
   /var/www/html/Squirrelmail-1.4.2

In your Apache (you are using Apache aren't you?) http.conf file you would
set:
   DocumentRoot "/var/www/html/Squirrelmail-1.4.2"


Except for the details this is our setup and you access our SM with:
   http://webmail.aurora.edu

On a Linux/UNIX system a further nicety is to make a sym-link in your
installation directory that points the name "squirrelmail" at your
installed version.  So, my DocumentRoot is actually:
DocumentRoot "/var/www/html/squirrelmail"

which is a link to the actual installation.  This allows me to install a
new version of SM along side my operational version and configure it. 
When I am ready I stop my web server, switch the sym-link and restart the
server.

Hope this helps.

Dave Basener



"... be the change you wish to see in the world."  - Gandhi

David Basener   http://www.aurora.edu/~dbasener
System Administrator[EMAIL PROTECTED]
Aurora University  630 844 4889



---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] Hosting SM

2003-12-07 Thread Dave Cochran
> First problem, the users are not there... I intend to create a free
> webmail
> service, so I will need some kind of script to add the users... (note to
> my
> mind: hire a PHP programmer right now)
>
> Second problem, I do not have SSH access but I do have a "software
> installation service" and, if someone has ever heard about, access to the
> system thru AlternC, so that I can either add the users thru AlternC or
> thru
> a script (or include a delay of 30 minutes in accounts and have a 24/7
> service available...)
>
> Sorry for being so nerd :-\ but I'm already starting
>
>
>
> -Missatge original-
> De: Willie Viljoen [mailto:[EMAIL PROTECTED]
> Enviat: Sunday, December 07, 2003 8:49 AM
> Per a: Alvaro Gilabert; SquirrelMail List
> Tema: Re: [SM-USERS] Hosting SM
>
> - Original Message -
> From: "Alvaro Gilabert" <[EMAIL PROTECTED]>
> To: "SquirrelMail List" <[EMAIL PROTECTED]>
> Sent: Sunday, December 07, 2003 9:34 AM
> Subject: [SM-USERS] Hosting SM
>
>
>> Ok, this question perhaps has been made a thousand times, so here it
>> comes once more
>>
>> I have a hosting package (1.25Gb, no limit on transfer, LAMP
> configuration,
>> IMAP, unlimited domains, unlimited mailboxes, etc) that I would like
>> to
> use
>> to setup a free webmail service.
>
> For multiple domains to work right, you will need to experiment some with
> plug-ins, but it should be fine.
>
>> I would like to use SM together with some plugins like calendar, to-do
>> lists, etc.
>>
>> What I don't want is the user to ever see the host where he is, but my
>> domain. That is, if I'm somewhere like Lycos, I don't want him to see
>> http://myusername.lycos.com/squirrelmail/login.php or something
>> similar
> but
>> http://www.example.com/login.php
>>

Sounds like you could make good use of a 'webhop', everydns.net can help
you out here, that is provided you control a domain name and are willing
to let everydns host it for you.




---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] Strange occurence

2003-12-12 Thread Dave Basener
> The SM access log is located in data/access_log - That file shows you who
> logged in or out, when they did it, and the ip address of the computer
> they used.

I was unaware of an access_log until now.  However, I have looked in the
data directory that I set up for user prefs (outside of the server
accessible tree) and also in the /var/www/html/squirrelmail/data
directory.  Neither have an access_log file.  I did a locate on
"access_log" and only pulled up my apache access log files.  Do I need an
option set up to use logging?

(I am running SM 1.4.2, PHP 4.3.2, GNU/Linux 2.4.20-19.8)

(NOTE:  I have not looked in archives, help files ... since this was a
quick dash-off in response to hearing about this for the first time.  If
you just want to tell me to go look it up first - s'OK, I understand.)

Thanks
Dave Basener


"... be the change you wish to see in the world."  - Gandhi

David Basener   http://www.aurora.edu/~dbasener
System Administrator[EMAIL PROTECTED]
Aurora University  630 844 4889



---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] Installation error - please help

2003-12-17 Thread Dave Ansell
I have istalled and used squirellmail before no problem, but I am having
trouble installing on my new machine.  I keep getting this error before any
login screen:

Fatal error: Cannot use [] for reading in
/var/www/squirrelmail/functions/imap_mailbox.php on line 547

The system is Mandrake 9.1 using the "out of the box" imap server provided.

I'm afraid I don't know much about php so don't really know how to find the
problem.

Any ideas?

thanks.




---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] ldapquery plugin doesn't work with 1.4.x

2003-12-17 Thread Dave Calafrancesco
(resending from correct from address for this list)


> Hi Ralf,
>
>> When I install the ldapquery plugin Version 1.6-1.2.5, I get this when
clicking on the "Directory" URL:
>> Warning: main(SM_PATHclass/mime.class.php): failed to open stream: No
such file or directory in /usr/share/squirrelmail/include/validate.php on
line 41
>>  Fatal error: main(): Failed opening required
>> 'SM_PATHclass/mime.class.php'
>> (include_path='.:/usr/share/php:/usr/share/pear') in
>> /usr/share/squirrelmail/include/validate.php on line 41
>
> Attached is a version that is supposedly compatible with 1.4.  The
author
> and Alexandros (see Tomas' reply to you) are working on more extensive
changes, but this should get you up and running until a new release is made.

Interestingly enough, I was having a similar error as Ralf. So I replaced
my existing ldapquery plugin (which I had already disabled in conf.pl)
with the one you attached. That got rid of the above fatal error, but
leaves me with an error locating the function ldap_connect on line 379 of
ldapquery.php

Interestingly enough, I have an older Debian sarge box with the 1.4.1
squirrelmail and have been trying to track down differences I am seeing in
the addressbook search functions under compose. Under the 1.4.1 system it
will query my LDAP, but not on the 1.4.2... the ldap configs are the same
between the two. Similar modules...

Any suggestions?

For background, the system is a Debian sarge (testing) with:

php4-imap4.1.2-6wood IMAP module for php4
php4-ldap4.1.2-6wood LDAP module for php4
php4-mcal4.1.2-6wood MCAL calendar module for php4
php4-mysql   4.1.2-6wood MySQL module for php4
php4-pear4.1.2-6wood PEAR - PHP Extension and Application Repository
php4-pgsql   4.1.2-4 PostgreSQL module for php4
squirrelmail 1.4.2-1 Webmail for nuts

The backend ldap is an Oracle Internet Directory and is searchable from
the older Debian Sarge box with squirrelmail 1.4.1 on it. Somewhere in the
past, the older system seemed to have gotten some of the newer Debian
packages into it so it has some 4.2.2 PHP4 stuff. Is there an issue with
the 4.1.2 PHP4 that might be causing the above behavior?

Thanks
Dave

-- 
Dave Calafrancesco
Vassar College Sys Admin
dcalaf-sq at vassar edu


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] previous and next in message view

2003-12-19 Thread Dave Calafrancesco

>> It seems that the Previous and Next selections in the message view are
reversed.  When I click on Previous, I get the newer message and Next
gives me the older message.
>> Have I missed a setting or am I misunderstanding something?
>
> enable server side sorting if you can.
>
> conf.pl -> 4. General Options -> 11-13 options.

Actually what the original poster is missing is the understanding that the
next and previous are entirely dependant on the sort order of that
particular folder at that moment. A folder can be sorted by sender, date,
subject in both forward and reverse directions as well as no sort order
whatsoever.

If the list of messages displayed is thought of as a list, from top of
screen to bottom of screen, then next takes you to the next message lower
in the list (down the screen) and previous takes you to the previous
message (up the screen). Whether the message will be older or newer is a
function of what sorting you have enabled at that particular moment.

Granted that if one will be using anything but unsorted, enabling server
side sorting would be a goodness if it is available :)

Speaking of sorting, the one I keep reaching for but not finding is sort
by size. Does anyone have a suggestion or a link to a plugin that would
enable sort by size as an option? The other feature I hear most requested
from my users is filtered views such as only unread messages being
displayed.

Dave

ps... I saved this message as a draft and luckily noticed that when I
resumed it had switched my 'from' address back to default. Why wouldn't it
have resumed the draft as I had saved it?

-- 
Dave Calafrancesco
Vassar College Sys Admin
dcalaf-sq at vassar edu





---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] previous and next in message view

2003-12-20 Thread Dave Calafrancesco



> Well, I hear this.  The conflict seems to be that users want to view
their
> newest messages at the top of the mailbox listing, but "previous/next"
might need to behave in the opposite fashion that it does now.  Yuck.
Well, if anyone has any bright ideas for how to phrase such a convoluted
setting, it could probably be placed in the Display Preferences Options
page.  What frightens me is the flood of support emails from people who
see this setting and make things even more confused...

I can't think of any way to improve it that wouldn't involve way more
confusion. As an example, we could certainly add a set of buttons that
would take us to prev/next by date and another set for prev/next by thread
but what about when the user is reading sorted by sender? Perhaps an
option at the server config level to change the text of those buttons
would be enough. Then those that want them to say UP and DOWN can change
them.

>>>> Speaking of sorting, the one I keep reaching for but not finding is
sort by size. Does anyone have a suggestion or a link to a plugin
that would enable sort by size as an option? The other feature I hear
most
requested
>>>> from my users is filtered views such as only unread messages being
displayed.
>
> Options->Index Order
>
> add size from there.

All that does is toggle viewing the size column and where the size is
shown in the display. It doesn't bring in a sort order button for that
column. Never understood why it didn't bring that button up is it
supposed to be there? In fact I'd like to see a sort order option for
status flag as well...

Dave

-- 
Dave Calafrancesco
Vassar College Sys Admin
dcalaf-sq at vassar edu



---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] previous and next in message view

2003-12-20 Thread Dave Calafrancesco


> Well, I hear this.  The conflict seems to be that users want to view
their
> newest messages at the top of the mailbox listing, but "previous/next"
might need to behave in the opposite fashion that it does now.  Yuck.
Well, if anyone has any bright ideas for how to phrase such a convoluted
setting, it could probably be placed in the Display Preferences Options
page.  What frightens me is the flood of support emails from people who
see this setting and make things even more confused...

I can't think of any way to improve it that wouldn't involve way more
confusion. As an example, we could certainly add a set of buttons that
would take us to prev/next by date and another set for prev/next by thread
but what about when the user is reading sorted by sender? Perhaps an
option at the server config level to change the text of those buttons
would be enough. Then those that want them to say UP and DOWN can change
them.

>>>> Speaking of sorting, the one I keep reaching for but not finding is sort
>>>> by size. Does anyone have a suggestion or a link to a plugin that would
>>>> enable sort by size as an option? The other feature I hear most
requested
>>>> from my users is filtered views such as only unread messages being
displayed.
>
> Options->Index Order
>
> add size from there.

All that does is toggle viewing the size column and where the size is
shown in the display. It doesn't bring in a sort order button for that
column. Never understood why it didn't bring that button up is it
supposed to be there? In fact I'd like to see a sort order option for
status flag as well...

Dave

-- 
Dave Calafrancesco
Vassar College Sys Admin
dcalaf-sq at vassar edu





---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] plugin wishlist...

2003-12-22 Thread Dave Calafrancesco
We have the message archive plugin installed, though the .eml flavor seems
to be having problems... but does anyone know of a plugin to accept
messages archives in the same formats and store them into the IMAP server?

The addressbook LDIF export is also nice... but is there an LDIF import
available that anyone knows of?


-- 
David Calafrancesco
Vassar College SysAdmin
dcalaf at vassar edu




---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] Bug Report - session cookie errors in compose

2003-12-22 Thread Dave Calafrancesco

Oops... sent to Tomas only instead of the list...


>> > You have abook_take and address_add. Both provide same function.
>>
>> Wasn't sure if they did the same things or not... which is the better
solution?
>
> you choose. one provides button at the bottom of window. Other provides
link near sender's name.

OK... will wait for the reports back from the users to see which they prefer.


> line 29 in page_header.php creates beginning of html page. line 129 in
global.php is part of code invoked by running sqsession_register
function.

OK... I'll try to look at what plugins might be doing it... is there a
trace mode that would trace entrance and exit of every function?

> sqsession_register function should be run before any html output starts.
>
> you somehow loose your session information and system tries to start new
session, or some plugin includes global.php in the wrong place. Or some
combination causes plugin to think that you've lost session information.
>
> Enable plugins one by one. Only if you really need them.

Right now we are in the stage where our user services consultants are
kicking the tires and seeing what functions they want me to persue and
which we can get rid of.

> If you have server with 5K users, enabling filters plugin is the last
thing that you would do. It would take only several advanced email users
to overload your server. Make sure that interface is responsive and
optimized. Only then add extra features.

Believe me I'd much rather enable something that could create and maintain
a maildrop file for each user. However as a virtual system there is no
home directory nor a .forward for each user. There is a qmail/vpopmail
directory and I could put a .qmail file into the system but I would still
need something that can handle creating maildrop files. Anyone know of a
plugin for Squirrel that can handle it? If not does anyone know of any
other web interface for a user to create a maildrop filter file?

The serious power user on this system is me and I use a hand edited
maildrop file for my filtering.

> If you have big webmail server, you need completely different filtering
solution.

If I could find one... believe me I'd be using it. Though I'd still have a
cluster of 5-10 dual P4 Xeon 3ghz servers each with 2.5gb RAM and a 2TB
backend NFS server connected at gigabit speeds.

BTW, does anyone know whether squirrelmail can function in a web cluster?
Is it able to store it's session info in MySQL and not need anything local
to operate? I'm guessing that the /tmp uploads thing would need to be a
shared NFS resource... anything else need to be dealt with?

Dave

-- 
Dave Calafrancesco
Vassar College Sys Admin
dcalaf-sq at vassar edu



-- 
David Calafrancesco
Vassar College SysAdmin
dcalaf at vassar edu





-- 
David Calafrancesco
Vassar College SysAdmin
dcalaf at vassar edu




---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] Bug Report - session cookie errors in compose

2003-12-22 Thread Dave Calafrancesco
Oops... sent to Tomas only instead of the list...


>> > You have abook_take and address_add. Both provide same function.
>>
>> Wasn't sure if they did the same things or not... which is the better
solution?
>
> you choose. one provides button at the bottom of window. Other provides
link near sender's name.

OK... will wait for the reports back from the users to see which they prefer.


> line 29 in page_header.php creates beginning of html page. line 129 in
global.php is part of code invoked by running sqsession_register
function.

OK... I'll try to look at what plugins might be doing it... is there a
trace mode that would trace entrance and exit of every function?

> sqsession_register function should be run before any html output starts.
>
> you somehow loose your session information and system tries to start new
session, or some plugin includes global.php in the wrong place. Or some
combination causes plugin to think that you've lost session information.
>
> Enable plugins one by one. Only if you really need them.

Right now we are in the stage where our user services consultants are
kicking the tires and seeing what functions they want me to persue and
which we can get rid of.

> If you have server with 5K users, enabling filters plugin is the last
thing that you would do. It would take only several advanced email users
to overload your server. Make sure that interface is responsive and
optimized. Only then add extra features.

Believe me I'd much rather enable something that could create and maintain
a maildrop file for each user. However as a virtual system there is no
home directory nor a .forward for each user. There is a qmail/vpopmail
directory and I could put a .qmail file into the system but I would still
need something that can handle creating maildrop files. Anyone know of a
plugin for Squirrel that can handle it? If not does anyone know of any
other web interface for a user to create a maildrop filter file?

The serious power user on this system is me and I use a hand edited
maildrop file for my filtering.

> If you have big webmail server, you need completely different filtering
solution.

If I could find one... believe me I'd be using it. Though I'd still have a
cluster of 5-10 dual P4 Xeon 3ghz servers each with 2.5gb RAM and a 2TB
backend NFS server connected at gigabit speeds.

BTW, does anyone know whether squirrelmail can function in a web cluster?
Is it able to store it's session info in MySQL and not need anything local
to operate? I'm guessing that the /tmp uploads thing would need to be a
shared NFS resource... anything else need to be dealt with?

Dave

-- 
Dave Calafrancesco
Vassar College Sys Admin
dcalaf-sq at vassar edu



-- 
David Calafrancesco
Vassar College SysAdmin
dcalaf at vassar edu




---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] Bug Report - session cookie errors in compose

2003-12-23 Thread Dave Calafrancesco


>
>>>> > You have abook_take and address_add. Both provide same function.
>>>>
>>>> Wasn't sure if they did the same things or not... which is the better
>> solution?
>>>
>>> you choose. one provides button at the bottom of window. Other provides
>> link near sender's name.
>>
>> OK... will wait for the reports back from the users to see which they
>> prefer.
>
> As I just stated in my previous email, they are different in where the
> link/button is and what email addresses they parse out of the message.
> They run together just fine.  This is not your problem.

Good... I think both functions are nice and hadn't seen any issues from
either of them.

>>> Enable plugins one by one. Only if you really need them.
>
> If the errors are appearing at the bottom of the compose screen, try only
> removing sent_confirmation.  I believe I introduced a non-critical error
> in the last release that causes such notices to be displayed.  They
> shouldn't stop things from working, however.  Will be making a new release
> when I have a spare minute for not answering emails.  ;)

That's the one... remove it and the errors go away. Seems to also reduce
the bouncing around the focus was taking when entering a reply window.

> Also, get a snapshot of 1.4.3 and GET RID of compose_fix.  It is buggy,
> and if your errors are on the compose page, this plugin will definitely be
> part of the problem.  Fixes in 1.4.3 include at least half of what this
> plugin does, but they do it "the right way"

I need to keep to the debian package which is 1.4.2 currently. Now that
sent_notification is not there most of the weirdness (if not all) is gone.
I'll yank compose_fix at the first sign of anything else odd.

>> Believe me I'd much rather enable something that could create and
>> maintain
>> a maildrop file for each user. However as a virtual system there is no
>> home directory nor a .forward for each user. There is a qmail/vpopmail
>> directory and I could put a .qmail file into the system but I would
>> still
>> need something that can handle creating maildrop files. Anyone know of a
>> plugin for Squirrel that can handle it? If not does anyone know of any
>> other web interface for a user to create a maildrop filter file?
>
> You can still create "home" directories for virtual users.  Filtering and
> autoresonder plugins all work great in this way.

The autoresponder we have controled through a custom perl we put together.
It takes care of password changes, forwarding, spam assassin settings
etc...

But I am not entirely disagreeable with moving some of those functions
into squirrel. It just needs to be done in a way that maintains our
security. I don't want to have apache run as the vpopmail user in order to
write files into the user's virtual mailbox directory under
/var/vpopmail/domains/... Having the tiny perl we use running as setuid is
sufficiently dangerous.

What filtering system can you suggest that would work well with a fully
virtualized qmail/vpopmail where all user info is in a MySQL database. It
would need to be compatable with using the .qmail file to do forwarding
and autoresponder stuff as well as allow spamassassin to function.
Currently we use maildrop to do our filtering but the only filtering the
users are allowed to configure is to send to spam assassin and optionally
to deliver spam email to a spam folder. I could see making an include file
for the user's rules to come in after the spam assassin filter and
optional deliver.

Any ideas would be appreciated.

Dave


-- 
Dave Calafrancesco
Vassar College Sys Admin
dcalaf-sq at vassar edu


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&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] Squirrelmail New User Question

2004-02-04 Thread Dave Larson
I am a squirrelmail newbie, and I did search to see if I could get my 
question answered before I posted.

I installed squirrelmail 1.4.2 on OS X 10.2.8, using Exim and UW IMAP. 
I can see the mail, but when I try to send mail I get ERROR: Connection 
refused Server replied: 61. I don't know if this is an Exim message or 
if it is coming from squirrelmail.

Has anyone seen this error? If so, how do I fix it?

Thanks,

Dave



---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
--
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] Bug Report

2004-09-23 Thread Dave Williams
I subscribe to the squirrelmail-users mailing list.
  [ ]  True - No need to CC me when replying
  [X]  False - Please CC me when replying

This bug occurs when I ...
  ... view a particular message
  ... use a specific plugin/function
  .X. try to do/view/use  Compose & send a message



The description of the bug:
When I compose a message and then send the message the original send
message window (I have it so that a new window opens when I compose a
message) closes and then a new compose window opens up saying that my
message was successfully sent, which it was.  Why is this second window
opening ?  It is a new compose window with e-mail headers, etc.

I can reproduce the bug by:
Sending a new message.

(Optional) I got bored and found the bug occurs in:


(Optional) I got really bored and here's a fix:


--

My browser information:
  Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; T312461)

MSIE 6.0

My web server information:
  PHP Version 4.3.4
  PHP Extensions (List)
* 0 = yp
* 1 = sysvshm
* 2 = sysvsem
* 3 = standard
* 4 = session
* 5 = posix
* 6 = pcre
* 7 = gettext
* 8 = ftp
* 9 = ctype
* 10 = zlib
* 11 = openssl
* 12 = apache2handler
* 13 = imap
* 14 = ldap

SquirrelMail-specific information:
  Version:  1.4.3a
  Plugins (List)
* 0 = delete_move_next
* 1 = squirrelspell
* 2 = newmail
* 3 = filters
* 4 = address_add
* 5 = change_pass
* 6 = quota_usage
* 7 = change_ldappass
* 8 = avelsieve
* 9 = windows
* 10 = folder_sizes
* 11 = archive_mail
* 12 = empty_folders
* 13 = abook_import_export
* 14 = abook_take
* 15 = administrator
* 16 = calendar
* 17 = compatibility
* 18 = sent_subfolders
* 19 = spamcop
* 20 = bookmarks
* 21 = bug_report
* 22 = fortune
* 23 = info
* 24 = ldifimport
* 25 = listcommands
* 26 = login_image
* 27 = message_details
* 28 = translate
* 29 = block_sender
* 30 = secure_login
* 31 = username
* 32 = rewrap
* 33 = select_range

My IMAP server information:
  Server type:  courier
  Server info:   [HIDDEN]  Capabilities:


---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
--
squirrelmail-users mailing list
Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines
List Address: [EMAIL PROTECTED]
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] Bug Report

2004-10-14 Thread Dave Williams
Hi there,

I have recently installed 1.5.0 and I do understand that this is a beta
version.  Wanted to let you know that when I want to move a message from
the INBOX to another folder that the message in the INBOX is never
removed.  So, what is happening is that the message is being copied to the
other folder and not moved.

Not a major bug but an annoyance.
__
David Williams
President
DTW Consulting, Inc.

I subscribe to the squirrelmail-users mailing list.
  [X]  True - No need to CC me when replying
  [ ]  False - Please CC me when replying

This bug occurs when I ...
  ... view a particular message
  ... use a specific plugin/function
  ... try to do/view/use 



The description of the bug:


I can reproduce the bug by:


(Optional) I got bored and found the bug occurs in:


(Optional) I got really bored and here's a fix:


--

My browser information:
  Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)

My web server information:
  PHP Version 4.3.4
  PHP Extensions (List)
* 0 = yp
* 1 = sysvshm
* 2 = sysvsem
* 3 = standard
* 4 = session
* 5 = posix
* 6 = pcre
* 7 = gettext
* 8 = ftp
* 9 = ctype
* 10 = zlib
* 11 = openssl
* 12 = apache2handler
* 13 = imap
* 14 = ldap

SquirrelMail-specific information:
  Version:  1.5.0
  Plugins (List)
* 0 = delete_move_next
* 1 = squirrelspell
* 2 = newmail
* 3 = filters
* 4 = address_add
* 5 = change_pass
* 6 = quota_usage
* 7 = change_ldappass
* 8 = avelsieve
* 9 = windows
* 10 = folder_sizes
* 11 = empty_folders
* 12 = abook_import_export
* 13 = abook_take
* 14 = administrator
* 15 = calendar
* 16 = compatibility
* 17 = sent_subfolders
* 18 = bookmarks
* 19 = bug_report
* 20 = info
* 21 = ldifimport
* 22 = listcommands
* 23 = message_details
* 24 = translate
* 25 = block_sender
* 26 = secure_login
* 27 = username
* 28 = rewrap
* 29 = select_range
* 30 = image_buttons
* 31 = msg_flags
* 32 = preview_pane
* 33 = qotd_login
* 34 = html_mail
* 35 = compose_fix
* 36 = legend
* 37 = attachment_doc
* 38 = autocomplete

My IMAP server information:
  Server type:  courier
  Server info:  * OK [HIDDEN] IMAP4rev1 UIDPLUS CHILDREN NAMESPACE
THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION
STARTTLS] Courier-IMAP ready. Copyright 1998-2004 Double Precision, Inc.
 See COPYING for distribution information.
  Cabailities:  IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT
THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS



---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
--
squirrelmail-users mailing list
Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines
List Address: [EMAIL PROTECTED]
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] version for RH 6.2?

2002-11-09 Thread Dave Kranz
Hello All,
I'm new to squirrelmail. Just got 1.2.8 working great on my RH 7.2 box.
What version would be the best to install on a RH 6.2, out of the box,
machine? Thanks.

Dave




---
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



Re: [SM-USERS] options.php display issue on -some- accounts

2008-12-04 Thread Dave Mitchell

First of all, apologies for the somewhat incomplete post - this will be the
last time I claim first-time poster ignorance ;-)

Kudos to Paul Lesniewski for already solving the problem in this post...

http://www.nabble.com/With-Proon-installed,-can-no-longer-edit-Squirrelmail-user-preferences-(%22Options%22-page)-td20475731.html

I removed all my plugins, then added back one at a time, and once I got to
Proon, the problem reappeared. I have commented out the offending lines in
Proon's setup.php, and things are good.

Thanks once again.


Paul Lesniewski wrote:
> 
>> SQM 1.4.16
>> PHP 5.2.6
>> MacOS Server 10.5.5
>>
>> After moving from an older mailserver system to squirrelmail, I
>> discovered a
>> problem with some of our users. Upon logging in, they are taken right to
>> the
>> options page
> 
> Which one exactly?  Right-click the options page and select properties
> and show the exact address.  What address is in the main browser
> address bar immediately after logging in?  What plugins are you using?
>  Do you have the Ask User Info plugin installed?  Turn off ALL plugins
> and see if the problem still happens.
> 
>> yet clicking on Personal Options, Display Options, or Folder
>> Options just returns the user to the main options page.
> 
> You could also look at the exact link address for any of those links.
> Show it here.
> 
>> Other users have no
>> such issues, and can set their Options just fine, and are taken to their
>> Inbox upon login. All users have the same permissions, and are in the
>> same
>> group, except for administrators, of course.
> 
> Another thing to do is compare the user preferences between a working
> and non-working user.  Show a unified diff of two such preference sets
> if you keep your prefs in files.
> 
>> After looking at similar issues here, I have downgraded the compatibility
>> plugin from 2.0.13 down as far as vers. 1.3, but nothing changes.
> 
> Not sure why you'd do that.  You can only break things by having the
> wrong version of compatibility installed.
> 
>> This is the last hurdle I need to overcome to get this new system
>> operating
>> the way it should, and i'm really stuck.
> 
> Show configtest output and any other relevant things like plugin list
> and versions of all plugins and related software:
> 
> http://squirrelmail.org/postingguidelines
> 
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> -
> 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
> 
> 

-- 
View this message in context: 
http://www.nabble.com/options.php-display-issue-on--some--accounts-tp20799477p20835950.html
Sent from the squirrelmail-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
-
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] Question about data_dir and attachment_dir when using MySQL backend with squirrelmail

2008-12-26 Thread Dave McMurtrie
Good morning,

I have a working Squirrelmail setup running on a test system using MySQL 
as the backend for storing prefs, address and session information.  This 
is all working well, but I noticed that I still need to provide a 
$data_dir and an $attachment_dir which Squirrelmail seems to use during 
message composition.

It seems to me like these directories will still need to be on some type 
of shared filesystem which (in my case) defeats the purpose for which I 
bothered with the MySQL setup in the first place -- to get away from our 
reliance on a shared filesystem between the webservers.

I'm wondering what other folks are doing who chose to use a database 
backend for prefs/address/sessions so they could share this data across 
multiple webservers.  Meaning, if you have to use a shared filesystem 
for the $attachment_dir anyway, why bother setting up MySQL in the first 
place?  I feel like I must be missing something obvious here.

I searched google and the list archives but saw no mention of this. 
Apologies if this is already covered somewhere.

Thanks,

Dave
-- 
Dave McMurtrie, SPE
Email Systems Team Leader
Carnegie Mellon University,
Computing Services

--
-
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


Re: [SM-USERS] Question about data_dir and attachment_dir when using MySQL backend with squirrelmail

2008-12-26 Thread Dave McMurtrie
Tomas Kuliavas wrote:

> Use load balancer which keeps current connection on one web host.

Hi Tomas.  Thank you for your response.  Unfortunately, I do not yet 
have a stateful load-balancer available to me.

> 
> Attachment directory stores temporary data. It does not matter which host
> stores it as long as web client keeps talking to same host during session.
> Address books and user preferences are stored in shared location, because
> this data must be shared between web hosts. You don't know which web host
> will be used by load balanced web client.
> 

I can see how it makes sense to store preferences and addressbook data 
in a database when using a stateful load-balancer in front of a 
multi-webserver configuration.  Both of those sets of data need to 
persist long-term, spanning the duration of multiple sessions.

I still fail to see much benefit to using ADODB to store session data in 
a database with this configuration, as the session data could just be 
stored in a local filesystem if a stateful load-balancer is being used. 
  When writing session data to local disk, the configuration is much 
simpler and the chance of any type of transient failure to access 
session data would be greatly reduced.

If I come across as being argumentative about this, I don't mean to be 
and I do apologize.  It just seems strange that folks have put effort 
into documenting this and making it work when there seems to be no 
compelling use for it.  It's because of this that I asked the question 
in the first place.  I really feel like I must be missing something obvious.

Thanks again for your response,

Dave
-- 
Dave McMurtrie, SPE
Email Systems Team Leader
Carnegie Mellon University,
Computing Services

--
-
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


Re: [SM-USERS] Planned completion of SM 1.5

2009-08-31 Thread Dave McMurtrie
Jonathan Stump wrote:
> hi!
> I wanted to ask if anyone could tell me how long SquirrelMail 1.5 will
> take to get released stable. Of course this can't be told exactly but if
> it is planned e.g. for november or december, then I wouldn't need to
> develop an extra theme for my 1.4 installation.
> Or will SM 1.5 look very similar to the 1.4? I read something about no
> frames (great =))

We're running an SVN copy of 1.5.2 in production and it's been 
completely stable.  I did fix a couple minor bugs that I've been meaning 
to report, but it coincided with the time when the squirrelmail.org site 
was broken so I wasn't able to find the "how to submit a patch" 
information at the time and I never got around to it.

1.5.2 still has frames.

Thanks,

Dave
-- 
Dave McMurtrie, SPE
Email Systems Team Leader
Carnegie Mellon University,
Computing Services

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
-
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


Re: [SM-USERS] Squirrelmail and cyrus. Inbox empty but mail succesfully delivered to ?home/userX/Maildir/new/

2009-11-20 Thread Dave McMurtrie
On Nov 20, 2009, at 4:09 AM, Martin Amarante  wrote:

> Hello, my name is Martin, I was wondering if maybe you could help me  
> solve this problem.
> I am doing a project for school, a mail server and I decided to use  
> cyrus and squirrelmail.
> for authentication i use sasl.
> I dont really know much about servers but I think there is something  
> wrong with my setup.
> In order to create a new user i do:
>
> su cyrus
> cyradm localhost
> >cm user.
> >quit
> exit
> saslpasswd2 -c -u server1 
> useradd -d /home/ -m 
>
> and then I am able to login using squirrelmail.
> The actual problem is that I can send emails and (supposely) receive  
> them but they never show on the inbox, If I open the Sent folder  
> they appear there but never in the inbox, but on the other hand the  
> emails are actually delivered to /home//Maildir/new/
>

You don't appear to have Cyrus delivery configured in your MTA.  Cyrus  
does not store mail in user home directories.

Look in the Cyrus docs for info about setting this up.

Hth,

Dave

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
-
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


Re: [SM-USERS] Squirrelmail and cyrus. Inbox empty but mail succesfully delivered to ?home/userX/Maildir/new/

2009-11-20 Thread Dave McMurtrie
Martin Amarante wrote:
> Hey thanks for the quick response.
> I have a setting called home_mailbox = Maildir/
> in /etc/postfix/main.cf <http://main.cf>
> Actually before I set that mails were stored in /var/mail/
> 
> But now even if I delete that setting in main.cf <http://main.cf> 
> nothing changes and the inbox is still empty.
> A strange thing is that if i move mails from the Sent folder to the 
> Inbox in squirrelmail they actually appear in inbox, but not the new emails.
> 
> You think what you said is still the problem?
> 

Yes.  This is not a SquirrelMail problem.  Read your Cyrus imapd 
documentation about how to configure postfix to deliver to Cyrus.

Thanks,

Dave
-- 
Dave McMurtrie, SPE
Email Systems Team Leader
Carnegie Mellon University,
Computing Services

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
-
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] Hacked installation?????

2010-05-12 Thread Dave Johnson
Hi all

I have a problem with someone that appears to have hacked our
squirrelmail installation

  --
Received: (qmail 16367 invoked by uid 112); 13 May 2010 01:19:13 -
Received: from unknown (HELO xxx.xxx.xxx.xxx) (127.0.0.1)
  by antelope.inf.co.za with SMTP; 13 May 2010 01:19:13 -
Received: from 41.138.179.107
(SquirrelMail authenticated user mail)
by xxx.xxx.xxx with HTTP;
Thu, 13 May 2010 01:19:13 - (UTC)
Message-ID: <3722.41.138.179.107.1273713553.squir...@xxx.xxx.xxx.xxx>
Date: Thu, 13 May 2010 01:19:13 - (UTC)
Subject: How Can I Invest In Your Country
From: "ALHAJI MUSTAPHA KAMARADIN" 
Reply-To: alhaji.kamaradi...@live.com
User-Agent: SquirrelMail/1.4.9a
MIME-Version: 1.0
Content-Type: text/plain;charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-Priority: 3 (Normal)
Importance: Normal




Dear Friend,
I am interested in establishing and operating a very viable business as
a
means of investment abroad. I do not know too well on how this is done
in
your country, so I will need you to help me in this regard.

Best Regards,
Alhaji Mustapha Kamaradin.



May 13 01:30:31 antelope imapd: LOGIN, user=mail, ip=[::1],
protocol=IMAP
May 13 01:30:32 antelope imapd: LOGOUT, user=mail, ip=[::1], headers=0,
body=0
May 13 01:30:43 antelope imapd: LOGIN, user=mail, ip=[::1],
protocol=IMAP
May 13 01:30:45 antelope imapd: LOGOUT, user=mail, ip=[::1], headers=0,
body=0
May 13 01:30:47 antelope imapd: LOGIN, user=mail, ip=[::1],
protocol=IMAP
May 13 01:30:48 antelope imapd: LOGOUT, user=mail, ip=[::1], headers=0,
body=0
May 13 01:30:55 antelope imapd: LOGIN, user=mail, ip=[::1],
protocol=IMAP
May 13 01:30:56 antelope imapd: LOGOUT, user=mail, ip=[::1], headers=0,
body=0
May 13 01:30:57 antelope imapd: LOGIN, user=mail, ip=[::1],
protocol=IMAP
May 13 01:30:58 antelope imapd: LOGOUT, user=mail, ip=[::1], headers=0,
body=0
May 13 01:31:04 antelope imapd: LOGIN, user=mail, ip=[::1],
protocol=IMAP
May 13 01:31:05 antelope imapd: LOGOUT, user=mail, ip=[::1], headers=0,
body=0

Any idea as to how to fix this problem

Regards





--

-
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

Re: [SM-USERS] Users can login with old passwords!

2010-06-22 Thread Dave McMurtrie
On 06/22/2010 11:34 AM, Dogsbody wrote:
>
> Please help, I have been all over google and the archives but cannot see
> this discussed anywhere.
>
> Standard LAMP server (details below), login to squirrelmail, fine,
> logout.  Change users password and log back into squirrelmail using old
> password!!  Logout and login with new password too!
>
> I have lots of data but not sure what is relevant.
>
> It looks like squirrelmail is holding onto the IMAP login as I don't see
> it disconnect when the user logs out.  In fact, when they login with the
> old password I don't see the authentication passed through to the IMAP
> server so I am guessing squirrelmail is caching something locally!?
>
> I thought this may be a session issue but after changing the users
> password I can login using the old password on a separate browser with
> cleared cookies :-/
>
> Any help gratefully received.  Details of my environment are below...
>
> SquirrelMail version : 1.4.20
> Installed Plugins: squirrelspell, delete_move_next, message_details
> PHP version  : 5.2.0
> Web server  : Apache 2.0.52
> IMAP server : Dovecot 1.1.8
> SMTP server : Sendmail 8.13.1
> OS  : CentOS 4.5
> Installed from tarball
> Browsers: Firefox 3.5&  Safari 5.0
> Shout if you need any more info.

Are you running an IMAP Proxy?  up-imapproxy, specifically, would still 
work with the old password as long as an existing connection remained 
cached.

HTH,

Dave
-- 
Dave McMurtrie, SPE
Email Systems Team Leader
Carnegie Mellon University,
Computing Services

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
-
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


Re: [SM-USERS] Users can login with old passwords!

2010-06-22 Thread Dave McMurtrie
On 06/22/2010 01:20 PM, Dogsbody wrote:
>
>> Are you running an IMAP Proxy?  up-imapproxy, specifically, would still
>> work with the old password as long as an existing connection remained
>> cached.
>
> Nope, no IMAP proxy, the IMAP server and Squirrelmail are on the same
> machine.

That alone doesn't rule out the use of an IMAP proxy, since it could 
also be on the same machine.

I can think of no other reason that an old password would continue to 
work.  Squirrelmail does not (in fact, can not) remain connected to your 
IMAP server.

Thanks,

Dave
-- 
Dave McMurtrie, SPE
Email Systems Team Leader
Carnegie Mellon University,
Computing Services

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
-
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] Missing Folders in List

2011-09-25 Thread Dave Page
Hi there,

I'm running SquirrelMail 1.4.15, talking to Cyrus IMAPd 2.1.18. Both are from 
distro packages on my Debian Lenny system. I have the plugins get_uuencode and 
avelsieve installed. I am using Apache 2.2.9 with PHP 5.2.6, both distro-
packaged, and accessing the system with Iceweasel (Firefox) 3.5.16.

The problem I'm having is that folders are getting skipped and re-ordered in 
the folder list view in SquirrelMail. If I look using mutt, kmail or cyradm, 
then one of my users has the hierarchy:

correspondence (\HasChildren)
correspondence.family (\HasChildren)
correspondence.family.xmas2007 (\HasNoChildren)
correspondence.family.xmas2009 (\HasNoChildren)
correspondence.family.xmas2010 (\HasNoChildren)

And yet in SquirrelMail's folder list I see:

- family
  xmas2007
  xmas2009

with the "correspondence" parent folder, and "xmas2010" folder, missing. Other 
missing folders actually corrupt the hierarchy further down, making folders 
seem to be children of folders which are not their parents.

All the folder links are correct, and include the omitted parent folder names. 
Similarly, I can view the missing folders by manipulating the URL for the   
right_main.php frame. The missing folders have mail in them. Since the folder 
names are correct, it seems that the folder separator is right. The folders 
are missing from the raw HTML view, meaning it's not a browser display bug.

Can anybody suggest why these folders might be being ommitted from the folder 
list, and how I can restore them and get the correct folder hierarchy?

Cheers,

Dave
-- 
Dave Page 
Jabber: grimo...@jabber.earth.li

--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2
-
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


Re: [SM-USERS] Missing Folders in List

2011-09-25 Thread Dave Page
On Sunday 25 Sep 2011 12:18:06 Dave Page wrote:

> The problem I'm having is that folders are getting skipped and re-ordered
> in the folder list view in SquirrelMail. If I look using mutt, kmail or
> cyradm, then one of my users has the hierarchy:

Typically, having spent hours on Google trying to fix this problem, just after 
I mailed the list I found a work-around - it seems that the folder list is 
only displaying "subscribed" folders. I was under the impression that folder 
subscriptions were just about which folders to poll for new mail - is there a 
way to display all folders regardless of whether or not they're subscribed?

Cheers,

Dave
--  
Dave Page 
Jabber: grimo...@jabber.earth.li

--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2
-
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] hMailServer integration with SquirrelMail

2012-01-14 Thread Dave Kimble
Very basic question.

Wikipedia says http://en.wikipedia.org/wiki/HMailServer#Integration
hMailServer integrates with Squirrelmail, but looking at SquirrelMail's 
documentation it doesn't look like it does.
I downloaded the package anyway and ran conf.pl , and it doesn't ask 
enough questions to be able to  pick up on hMailServer's database (MySQL 
in my case, but it could be something else).

So is integration with SquirrelMail out, or have I missed something ?

--
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
-
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


Re: [SM-USERS] getting the dreaded "you must be logged in to access this page"

2012-03-09 Thread Dave McMurtrie
On 03/09/2012 12:07 PM, Brian Gold wrote:
> We recently migrated from an RHEL 4 system to a new RHEL6.2 server running 
> Squirrelmail 1.4.22&  php 5.3.3. Everything had been
> running smoothly for a few weeks, but as of this morning we have a number of 
> users reporting that after they successfully log in,
> when they click on any links they get "ERROR: You must be logged in to access 
> this page".

Where are your PHP sessions being stored (session.save_path in php.ini)? 
  Is that filesystem full?  If it's tmpfs, do you have tmpwatch cleaning 
up things that it shouldn't (like empty hash directories, etc)?

HTH,

Dave

--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
-
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


Re: [SM-USERS] Server violation by a spammer

2012-06-11 Thread Dave McMurtrie
On 06/11/2012 11:30 AM, Bumo wrote:
> Hi, I have a frontend server on a DMZ running RH ES 3 up3 and squirrelmail 
> 1.4.8. php 4.3.2
> Thousand of email were sent in two occasions and the only evidence of the 
> abuse was on the access_log (squirrel_logger) an entry from the ip which was 
> sending the messages.
>
>
> There was no evidence of brute force attack. Infact there weren't many entry 
> in access_log of failed logging. Well I don't know if this is enough to say 
> that I wasn't under a brute force attack.

One or more of your users probably had their credentials phished.  It's 
fairly common.

> However now I'm asking myself if a spammer, getting the login credential in 
> squirrelmail (IMAP auth toward the local  imap server) can send thousand of 
> email in an automatic way.

Yes, there are automated tools that will use Squirrelmail to send 
essentially as many messages out as possible as fast as your 
infrastructure will allow.  Look at the browser string from your 
webserver logs.  I've seen a couple different ones.

> Temporarily I blocked the original ip range at firewall level but I think 
> this can only delay the next attack.

You're probably right.

> I'm working on lockout plugin and captcha, but before going on, I should know 
> if in this case squirrel is the weakest part of this puzzle.

It was probably the easiest thing for a spammer to exploit this time. 
Once you make that more difficult to exploit, the spammer will look for 
some other way to relay spam through your domain.

> Any suggestion?

Implement rate-limiting at the MTA layer.

hth,

Dave


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
-
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


Re: [SM-USERS] Mail folder files

2012-06-14 Thread Dave McMurtrie
On Jun 14, 2012, at 6:30 PM, Nick  wrote:

>   Hi All,
> Does anyone know how I can change the way the mail is
>stored - On my previous server I ran v1.1.14 and all the messages
>were saved into one file that had the mailbox name.
> 
>Now I'm running v1.4.20 and the messages are saved into
>individual files with long complex names in a folder called /cur
>under a /.folder that has the mailbox name.

Hi Nick,

Squirrelmail is an IMAP client.  It doesn't store mail.  Rather, it fetches 
mail from an IMAP server and displays it for you.  Check your IMAP server 
documentation.

Hth,

Dave
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
-
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] 2 simultaneous languages

2013-11-26 Thread Dave Dillabough
I'm running squirrelmail 1.4.22 on a Centos 6.3 system. My language is set
to English which works well for my day to day mail but I do get the
occasional Japanese email message which squirrelmail does not display
correctly. It looks like the character set is not being properly
recognized. Similarly any message that I compose in Japanese is also
mangled.

If I set the squirrelmail language to Japanese under Options->Languages
everything works fine so I don't think that the issue is with the
underlying system. Also other mail clients work OK with the same mailbox
so the text in the mailbox is OK. The issue is with Squirrelmail
interpreting the text incorrectly. I have tried multiple browsers with the
same result.

My question. Can Squirrelmail work in 2 languages simultaneously or do I
need to switch the interface language every time I want to read or compose
in Japanese?

I'm hoping that it is something simple that I have missed.

Thanks,

Dave



da...@deepgreen.ca

--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk
-
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


Re: [SM-USERS] Why have an user mailing list?

2015-09-17 Thread Dave McMurtrie
On Thu, 2015-09-17 at 06:32 -0300, André Z. D. A. wrote:
> Why having a user mailing list if no one answer questions that are natural to 
> be asked, have no answer or documentation about them, and probably show 
> common problems to many users?
> 
> 
> 
> > Third try. Anyone around here can give me a bit of help, please?
> > 
> >> Maybe I started this message with the wrong sentence. So I'm writing again 
> >> - but assuming someone will read the original message as needed, because 
> >> it has all details that I imagine are needed.
> >>
> >> As the admin of a few Squirrelmail installations, I have reports of users 
> >> that can't search their messages; they are using specific IMAP servers. 
> >> Squirrelmail shows a strange error (see original message), which does not 
> >> point me to anything to solve the problem, or to find the solution. May 
> >> you help me?
> >>
> >> Another problem is that clicking in the message list headers to choose 
> >> what field for message sorting causes an very bad error. Users cannot 
> >> refresh message lists anymore! There is no way for them to reset the 
> >> configuration. I must manually remove the sort option from each user 
> >> configuration file.
> >>
> >> With Squirrelmail configured for each of these different IMAP servers, I 
> >> run its configtest. No problem is pointed (see original message). So, why 
> >> do I have these and other problems?
> >>
> >>> I get an error when searching my inbox for some subject. I use an IMAP 
> >>> server to this account.
> >>>
> >>> The error message (in Portuguese) is:
> >>>
> >>> ===
> >>> ERRO:
> >>> Erro: pedido não pode ser completado.
> >>> Requisição: FETCH (FLAGS UID RFC822.SIZE INTERNALDATE 
> >>> BODY.PEEK[HEADER.FIELDS (Date To Cc From Subject X-Priority Importance 
> >>> Priority Content-Type)])
> >>> Razão alegada: FETCH token is invalid
> >>> ===
> >>>
> >>> Which should be something like this, in English:
> >>>
> >>> ===
> >>> ERROR:
> >>> Error: request can't be completed.
> >>> Request: FETCH (FLAGS UID RFC822.SIZE INTERNALDATE 
> >>> BODY.PEEK[HEADER.FIELDS (Date To Cc From Subject X-Priority Importance 
> >>> Priority Content-Type)])
> >>> Informed reason: FETCH token is invalid
> >>> ===

That's not a valid FETCH command that Squirrelmail is sending.  It's not
including the sequence set (which messages to fetch those data items
for).

I assume that either your Domino server responded to a prior command
(LIST probably) with something that Squirrelmail wasn't expecting or
couldn't parse, or maybe there's just a very odd bug in Squirrelmail.

Is there any way to enable protocol logging on your Domino server so you
can see every command that's sent by Squirrelmail and every response
that Domino sends back?

hth,

Dave
--
Monitor Your Dynamic Infrastructure at Any Scale With Datadog!
Get real-time metrics from all of your servers, apps and tools
in one place.
SourceForge users - Click here to start your Free Trial of Datadog now!
http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
-
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

Re: [SM-USERS] Why have an user mailing list?

2015-09-18 Thread Dave McMurtrie
On Thu, 2015-09-17 at 18:25 -0300, André Z. D. A. wrote:
> 
> > On Thu, 2015-09-17 at 06:32 -0300, André Z. D. A. wrote:
> >
 
...snipped for brevity...

> >>>>> Which should be something like this, in English:
> >>>>>
> >>>>> ===
> >>>>> ERROR:
> >>>>> Error: request can't be completed.
> >>>>> Request: FETCH (FLAGS UID RFC822.SIZE INTERNALDATE 
> >>>>> BODY.PEEK[HEADER.FIELDS (Date To Cc From Subject X-Priority Importance 
> >>>>> Priority Content-Type)])
> >>>>> Informed reason: FETCH token is invalid
> >>>>> ===
> > 
> > That's not a valid FETCH command that Squirrelmail is sending. It's not
> > including the sequence set (which messages to fetch those data items
> > for).
> 
> Really!? That's a surprise I would never think about.

Yes, it should be something like:

FETCH 1:* (FLAGS UID RFC822.SIZE INTERNALDATE...

> > I assume that either your Domino server responded to a prior command
> > (LIST probably) with something that Squirrelmail wasn't expecting or
> > couldn't parse, or maybe there's just a very odd bug in Squirrelmail.
> 
> I can make most tests within my server (with Squirrelmail in). I just cannot 
> make tests that are either expeting to log the servers (IMAP or SMTP) 
> internally, because they are external and inaccessible directly by me or by 
> the other Squirrelmail users. I can't imagine what a test could be, from SM. 
> I can make a setup where I can alter squirrel source code to log each 
> commands it sends. Would it be useful? And what should I look for, to log? 
> And what information can be needed (I don't know protocol details, so I would 
> need a help with this kind of things).

If you don't have access to the server, you could set up the
SquirrelMail imapproxy and use that to get protocol logs.  Or if it's a
test server you should be able to stick some debugging code into the
SquirrelMail source and figure out what's going on.

I think the above FETCH happens in the sqimap_get_small_header_list()
function in functions/imap_messages.php.  Figure out what the passed
value of $msg_list is and why $msgs_str ends up being a null string.

hth,

Dave
--
-
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] mail server is not responding?

2011-04-09 Thread Dave Goldberg, CRS
I have over 10,000 emails, 2 days ago squirell mail stopped pushing emails
to my ipad and iphone. the message says the email server is not
responding. verify that you have entered the correct account info in the
mail settings - which I have.
so now what?


-- 
Sincerely,

Dave Goldberg, VP
ALLIED REALTY CORP.
Certified Residential Specialist
Certified Distressed Property Expert
Property Management Expert
301-515-0505 OFFICE
301-233-6501 CELL
301-540-5091 FAX
www.homesbydaveg.net


--
Xperia(TM) PLAY
It's a major breakthrough. An authentic gaming
smartphone on the nation's most reliable network.
And it wants your games.
http://p.sf.net/sfu/verizon-sfdev
-
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] Seen/Unseen issue

2002-12-10 Thread Wong, David T (Dave), SOLIT



 
I've got SM 1.2.7 
& SM 1.2.9 running on Win2k adv srv SP3, with PHP4.2, Apache 1.3.27 and 
Mercury/32 3.32.
 
I just recently 
converted my Exchange 2k server over to Mercury/32, so now it is running 
services for both my domains.  The problem I'm seeing is when I use SM 
1.2.9 to check email on domain1, it always shows 0/xx messages, indicating that 
there's a bunch of read email, which isn't the case.  On domain2 however, 
SM 1.2.7 is showing the correct seen/unseen counters.
 
I verified that 
there isn't any other email clients checking email for any of the mailboxes on 
domain1.  It appears to display the same for every user on 
domain1.
 
Is this a limitation 
of Merc32 in multi-domain mode, or is there something with SM 1.2.9 that 
changed?
 
Thanks
 
- D 
-