Development Articles
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOtherDevelopment Articles

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old January 30th, 2002, 10:52 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
I do not see much change in the version

Maybe it's me, but I don't see where the source is changing from what I downloaded back in part one...

Reply With Quote
  #2  
Old February 1st, 2002, 01:46 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: I do not see much change in the version

It's the same source - we've just offered a link in each part, in case you came in late

Reply With Quote
  #3  
Old February 1st, 2002, 09:06 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: I do not see much change in the version

Oh, I see. Will you be making the final version of the code available?

Reply With Quote
  #4  
Old February 10th, 2002, 12:37 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Login error : |

This might sound stupid, and it probably does, but right at the start, when I try to login with my email address and password, I get an error "A connection could not be opened to the mail server. Please verify your account information and log in again."

I know my email and password exist, so what could I be doing wrong here?

Reply With Quote
  #5  
Old February 10th, 2002, 06:35 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Error message

When I try to run the scripts I get the error message

Fatal error: Call to undefined function: imap_open() in /usr/local/home/jsawyer/www/mail/list.php on line 24

I get the same result when I try to run another IMAP tutorial from PHPBuilder.

My ISP has confirmed that PHP 4.0 is enabled. http://inshore.com/test.php

I am just getting started with PHP and any help would be appreciated.

Reply With Quote
  #6  
Old February 10th, 2002, 04:23 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Error message

I think that the problem might be that the IMAP extension isnt installed.

Try this out: Create a php file with the following code in it:
**echo phpinfo();**

Run it, and check if there is a section about IMAP there. If there isn't, thats probably the problem. If there is, then I dont know what could be wrong.

Hope that helps.

Reply With Quote
  #7  
Old February 20th, 2002, 09:25 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
How do I use my (eg) Yahoo SMTP server without touching the php.ini file?

As the title goes, how do I use my (eg) Yahoo SMTP server without touching the php.ini file?

I have an experimental website residing on a free webhost which provides php and mysql as part of its services, but not the mail() function. (multimania.com, PHP4) You could now understand why I can't touch the php.ini file, huh?

I know that there are free form mails around, but my website is fully integrated/automated and needs its own form mail in PHP.

Thanks in advance!

Reply With Quote
  #8  
Old February 22nd, 2002, 04:41 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:

Reply With Quote
  #9  
Old February 22nd, 2002, 12:24 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:

Reply With Quote
  #10  
Old February 23rd, 2002, 03:59 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:

Reply With Quote
  #11  
Old April 7th, 2002, 08:49 PM
GiLuX GiLuX is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2000
Location: amsterdam
Posts: 62 GiLuX User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 9
added a next/previous button

for anyone interested,
i added a next/previous button to this script and an extra preferences page, so you can choose how many messages you can view per page.

i'm subscribed to a few mailing lists so i get tons of mail per day and thats where this mail script starts to generate very large and slow pages to load.

get it here, its a zip with 2 files:
http://www.devweb.nl/mailaddon/devshedmailaddon.zip
__________________
you can get anything you want at alices restaurant

Reply With Quote
  #12  
Old July 29th, 2002, 10:00 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Outlook Express && Attachment

Hi,
I have installed the script on my webserver and it works well. However, sending an email with a plain text body and an attachment with Outlook express makes trouble.
The message header is displayed correctly and the attachment is also fine, but the plain text body of the email is gone.
It seems that this behavior is due to the strange usage of mime types in outlook. Any hints to fix this besides avoiding Outlook completely.
Frank

Reply With Quote
  #13  
Old August 14th, 2002, 09:36 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
imap_open problem

Hi
First of all thanks for great article.
I am using php 4.1.2 as shipped with redhat 7.3
The imap_open function in list.php needs small modification (added /tls/novalidate-cert) in order to work:

$inbox = @imap_open ("{". $SESSION_MAIL_HOST . "/pop3:110/tls/novalidate-cert}", $SESSION_USER_NAME, $SESSION_USER_PASS) or header("Location: error.php?ec=3");


Reply With Quote
  #14  
Old August 26th, 2002, 05:46 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Lame session question

How would you time out the session.

Reply With Quote
  #15  
Old January 2nd, 2003, 03:03 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Msg Attachments

I copied and pasted the code snippets to handle uploaded file attachments and everything appeared to work fine. However when the attachaments were downloaded from the sent email they are not readable. Any Ideas?

Note: .txt files read ok, but everything else dosen't

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherDevelopment Articles > Building A PHP-Based Mail Client (part 3)


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT