Jump to content

how to read email using php


php1

Recommended Posts

You will need to make sure the php_ldap.so extension is in your php extensions directory and that you have a line in your extensions list along the lines of:

 

extension=php_ldap.so

;extension=php_ldap.so

 

This may already exists as a comment so just remove the semi-colon to apply.

 

You may also have to restart the apache service.

 

Link to comment
Share on other sites

thank u so much for ur great help. I also have one doubt that how to set up a imap/po3 server for linux system.

<?php

 

$server = "www.rediffmail.com";

 

$user = "joby";

 

$pass = "jobytest";

 

$conn = @imap_open("\{$server/imap}INBOX", $user, $pass)

 

or die("Connection to server failed");

 

?>

 

 

i got as connection to server failed.  whether i have to do any other things to make my imap working

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.