Name the Functions in IMAP, POP3 AND LDAP?

Answers were Sorted based on User's Feedback



Name the Functions in IMAP, POP3 AND LDAP?..

Answer / vijaya

Examples of IMAP Functions:

1. imap_list : Read the list of mailboxes
2. imap_open : Opens an IMAP stream to mailbox

Examples of LDAP Functions:

1. ldap_connect : This will connect to the ldap server with
the given login credentials.
2. ldap_search : By using this command we can search in ldap
records.

Is This Answer Correct ?    17 Yes 0 No

Name the Functions in IMAP, POP3 AND LDAP?..

Answer / sailabala sahoo

IMAP:-( Internet Message Accese protocol) Port No is- 143
1.imap_list : Read the list of mailboxes
2. imap_open : Opens an IMAP stream to mailbox
3.after open the mail box one copy of the mail ll be a store
in server.
POP3 (Post Office Protocal) Port no-110
1.imap_list : Read the list of mailboxes
2.imap_open : Opens an IMAP stream to mailbox
3.After open the mail there ll be nothing in server.

LDAP:- (Light weight Directory Access protocol) port no-636

1. ldap_connect : This will connect to the ldap server with
the given login credentials.
2. ldap_search : By using this command we can search in ldap
records.
3.It is faster than other database like mysql,sql,oracle
4.It can write small amount of data but read becames faster.
5.Ex: outlook express

Is This Answer Correct ?    18 Yes 3 No

Post New Answer

More PHP Interview Questions

How to Pass JSON Data in a URL using CURL in PHP?

0 Answers  


Is php 5.6 secure?

0 Answers  


What is strcmp?

0 Answers  


Difference between mysql_connect and mysql_pconnect in php?

2 Answers  


Why is node js better than php?

0 Answers  






class Database { public static $_instance; public static function getInstance() { if(!isset(self::$_instance)) self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME); print_r(self::$_instance); return self::$_instance; } } can any one explain "self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME);" this line

1 Answers  


Which is the best php framework for a beginner?

0 Answers  


What is empty php?

0 Answers  


Is multilevel inheritance possible in php?

0 Answers  


How can you encrypt password using php?

0 Answers  


How can I make a script that can be bilanguage (supports English, German)?

3 Answers  


How to upload file in php?

0 Answers  


Categories