Does PHP IMAP have any support for Metadata?
Thanks.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
I am attempting to set up a group webmail client wherein certain emails
can be stored separately from the normal mailbox system and retrieved
for viewing by any user via a separate mechanism to the normal client.
According to the documentation, I should be able to connect to this
store u
I'm using PHP's IMAP functions, and they seem to be working fine,
however, on the page where I call imap_fetchstructure() I get a string
of errors at the very end of the script. they do not occur at the point
the function is executed, rather at the very end.
They do not specify where they actu
AP for mail reading.
> >>
> >>The attachment types can be: images/pdf/text documents.
> >>
> >>Any suggestions?
> >>
> >>On phpclasses.org did not find any which works well.
> >>
> >>
> >
> >I think the PHP IMAP e
suggestions?
On phpclasses.org did not find any which works well.
I think the PHP IMAP extension can do all you need, if you have it
installed. Otherwise, you can just use pure PHP IMAP client class and
the use this MIME message parser to extract the message body parts into
a string or a separate
is, is this a problem with my email server or my php(www)
server?
Can't see an option in php or the php-imap section to specify where to
look for certificates, so I guess the problem is happening because it's
not in the certificate bundle.
I suspect you'd get the same problem
When using imap_open to access my email server, I keep getting a invalid
certificate error.
The cert on the email server is issued from Geotrust and is quite common
(Rapidssl).
The error comes from it not being listed in the root certificates list
(bundle).
My question is, is this a problem
]
Sent: Tuesday, October 31, 2006 1:37 PM
To: php-general@lists.php.net
Subject: [PHP] PHP IMAP with Attachments!?
Hi to all,
I need a class that reads emails from a server and reads the attachments
from the mail.
The mailservers is an IMAP for mail reading.
The attachment types can be: images
>
> On phpclasses.org did not find any which works well.
I think the PHP IMAP extension can do all you need, if you have it
installed. Otherwise, you can just use pure PHP IMAP client class and
the use this MIME message parser to extract the message body parts into
a string or a separate file:
Hi to all,
I need a class that reads emails from a server and reads the attachments from
the mail.
The mailservers is an IMAP for mail reading.
The attachment types can be: images/pdf/text documents.
Any suggestions?
On phpclasses.org did not find any which works well.
Regards,
Andy.
Eric wrote:
How would I go about listing all newsgroups via the IMAP functions?
Maybe http://www.php.net/manual/en/function.imap-list.php ?
It mentions "mailboxes" but the imap functions work for news & imap
accounts.
--
Postgresql & php tutorials
http://www.designmagick.com/
--
PHP General
How would I go about listing all newsgroups via the IMAP functions?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> -Original Message-
> From: Edward Kay [mailto:[EMAIL PROTECTED]
> Sent: 19 October 2006 14:53
> To: php-general@lists.php.net
> Subject: [PHP] IMAP extension causing delays
>
> Hello,
>
> I need PHP's IMAP extension for my web app but it is really slow
You may also want to read PHP IMAP source and see what it does in its
initializiation function.
That may reduce the category of "DNS Error" to something a lot more
specific...
http://lxr.php.net/
On Thu, October 19, 2006 8:52 am, Edward Kay wrote:
> Hello,
>
> I need PHP
Thanks for your suggestions John. At the moment, I do need to run it as a
CGI as I need different php.ini files for each virtual host.
I think there may well be some issues with DNS, as suggested by Jochem. My
configuration of DNS stuff locally is a bit patchy :) I'll investigate this
avenue first
Edward Kay wrote:
From this, it is clear to me there is some major delay being
introduced by
the loading of the IMAP extension. Any ideas on how to resolve this?
use php as an apache module - thereby the startup delay is only
noticed when
the webserver starts - this assumes that the problem is
> >
> > From this, it is clear to me there is some major delay being
> introduced by
> > the loading of the IMAP extension. Any ideas on how to resolve this?
>
> use php as an apache module - thereby the startup delay is only
> noticed when
> the webserver starts - this assumes that the problem is
Edward Kay wrote:
Hello,
I need PHP's IMAP extension for my web app but it is really slowing my
server up.
My setup: Fedora Core 5, Apache 2.2.2, PHP 5.1.4 (run as CGI with suPHP),
PHP IMAP extension - all standard FC5 RPMs. The test page is simple - just a
call to phpinfo().
Withou
Edward Kay wrote:
> Hello,
>
> I need PHP's IMAP extension for my web app but it is really slowing my
> server up.
>
> My setup: Fedora Core 5, Apache 2.2.2, PHP 5.1.4 (run as CGI with suPHP),
> PHP IMAP extension - all standard FC5 RPMs. The test page is simple -
Hello,
I need PHP's IMAP extension for my web app but it is really slowing my
server up.
My setup: Fedora Core 5, Apache 2.2.2, PHP 5.1.4 (run as CGI with suPHP),
PHP IMAP extension - all standard FC5 RPMs. The test page is simple - just a
call to phpinfo().
Without the IMAP extension
CodeHeads wrote:
...
>
> U, you referred me to a page about smart questions..what about
> your TOP posting?
Richard has more than enough karma on this list to get away with a top-post
every half hour or so.
>
> Nevermind, I see the PHP list is filled with smart asses so I will fin
On Mon, June 19, 2006 7:12 pm, Richard Lynch wrote:
> Of all the functions to use @ with, and to ignore error messages and
> warnings, IMAP is the *last* one you want to do that with.
>
> Add some error checking, and just forget using @
>
> Meanwhile, both your questions didn't actually have a ques
Of all the functions to use @ with, and to ignore error messages and
warnings, IMAP is the *last* one you want to do that with.
Add some error checking, and just forget using @
Meanwhile, both your questions didn't actually have a question, nor
any explanation of what was going wrong or right or.
Hello all,
I am having a problem trying to get the subject corenspond with the
message ID on a search.
here is my code so far:
echo "Search Results";
$WORDS = $_POST['words'];
$search1 = "BODY \"$WORDS\"";
$SEARCH = @imap_search($conn, $search1, SE_UID);
$arrData = $SEARCH;
$mailHeader = @imap_he
Hello again,
Here is another problem I am having. I would like to setup multiple pages on
a IMAP archive reader I am working on.
I cannot seem to get the multiple pages working right.
Here is my code.
$threads = imap_thread($conn);
foreach ($threads as $key => $val) {
$tree = explode('.', $key)
Hello all,
I am having a problem trying to get the subject corenspond with the
message ID on a search.
here is my code so far:
echo "Search Results";
$WORDS = $_POST['words'];
$search1 = "BODY \"$WORDS\"";
$SEARCH = @imap_search($conn, $search1, SE_UID);
$arrData = $SEARCH;
$mailHeader = @imap_he
hi,
I think that I understood you problem some what,
if you are having newline character (\n) in you string ,
then you can use Regular expression to replace the \n character
with tag.
why can't you try something like the following
-code
tag */
$string = "this is to first_li
Hello Bruno,
Wednesday, October 19, 2005, 10:08:24 AM, you wrote:
> Look the main page and try to read any message... I dont know what
> can i do to fix it...
nl2br()
(see php manual)
--
TBUDL/BETA/DEV/TECH Lists Moderator / PGP 0x6C0AB16B
__ Ge
Hi guys,
I need some help with the imap_body function and how to work with the
string that this function returns...
Im working on a mailing list archive website and i'm using the imap_*
functions to handle this, the header works fine (and other things too)
but the Body of the message dont wo
I tried to make the simple program
Mailboxes\n";
$folders = imap_listmailbox($mbox, "{imap.liu.se:993}", "*");
if ($folders == false) {
echo "Call failed\n";
} else {
foreach ($folders as $val) {
echo $val . "\n";
}
}
echo "Headers in INBOX\n";
$headers = imap_headers($mbox);
if
Patrick Barnes wrote:
Is there any way to get the file descriptor of an IMAP stream opened
with imap_open?
No. You'd have to manually connect to the IMAP server with socket
functions or whatever.
One way to look at it is that imap_* functions are a higher level of
abstraction than raw file
Hi there,
Is there any way to get the file descriptor of an IMAP stream opened
with imap_open?
Patrick
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
For Imapd:
make slx &&
cp imapd/imapd /usr/local/sbin/ &&
cd c-client &&
cp c-client.a /usr/local/lib/libc-client.a &&
cp rfc822.h /usr/local/include/ &&
cp mail.h /usr/local/include/ &&
cp linkage.h /usr/local/include/
For PHP:
add just '--with-imap' '--with-imap-ssl'
regards,
Bostjan
On
Hi,
I'm trying to compile php with imap ssl support, I've downloaded imap
source and run
make lnp SSLTYPE=unix
then i run php configure file with
as
./configure --with-imap=/usr/src/php5/imap/ --with-openssl
--with-imap-ssl=/usr/src/php5/imap/
configuration, make and make install worked but I t
Hi,
I started using the IMAP functions and ran into a problem with some
headers for attachments.
The first one is:
Content-type: image/psd; x-unix-mode=0644; name=FinalVersion6.psd
Content-transfer-encoding: base64
Content-disposition: inline; filename=FinalVersion6.psd
Generated by Mac Mail. The
imap-sort function doesn't search correctly for unicode strings, is there
any unicode function with this functionality that support locale??
--
Vahid Ghafarpour.
[EMAIL PROTECTED]
http://vahid.ghafarpour.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.p
imap-sort function doesn't search correctly for unicode strings, is there
any unicode function with this functionality that support locale??
--
Vahid Ghafarpour.
[EMAIL PROTECTED]
http://vahid.ghafarpour.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.ph
I'm calling imap_listmailbox() like this:
$folders = imap_listmailbox($mbox, "{my.server:143}", "*");
And as a return value, I get a list of all files in my home directory,
which I find very odd. It means I have to replace "*" with "mail/*"
because mail/ is the directory where I happen to store m
Maxime Thonon wrote:
hello,
i work with imap and php to make a webmail. it works fine but i have a
big problem with some mails, those who contains a multipart into a
multipart. it happends with outlook express who puts into a mutlipart
the text and html version of the text into the first part of th
hello,
i work with imap and php to make a webmail. it works fine but i have a
big problem with some mails, those who contains a multipart into a
multipart. it happends with outlook express who puts into a mutlipart
the text and html version of the text into the first part of the mail.
an other cas
John Holmes wrote:
> From: "Markus H" <[EMAIL PROTECTED]>
>
>> $structure = imap_fetchstructure($mbox, msgnum );
>> Warning: imap_fetchstructure(): Bad message number in (...) on line (...)
>
> Is "msgnum" a constant or do you mean to have "$msgnum", i.e. a variable?
>
> ---John Holmes...
Yes,
From: "Markus H" <[EMAIL PROTECTED]>
$structure = imap_fetchstructure($mbox, msgnum );
Warning: imap_fetchstructure(): Bad message number in (...) on line (...)
Is "msgnum" a constant or do you mean to have "$msgnum", i.e. a variable?
---John Holmes...
--
PHP General Mailing List (http://www.php.ne
Hello NG
Please excuse my bad english because I come from austria. I hope you
understand me...
I have searched in the NG and in internet and don't found an answer to my
php problem:
When I use the imap functions with php all looks like good but when I will
get the body or structure from an em
i am using standard port 143.
- Original Message -
From: "raditha dissanayake" <[EMAIL PROTECTED]>
To: "Haseeb Iqbal" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, May 19, 2004 9:10 PM
Subject: Re: [PHP] IMAP connect problem
>
Hi,
Haseeb Iqbal wrote:
hi all,
when i try to connect to imap server i get this and the script aborts.
what should i do to fix.
Certificate failure for localhost: self signed certificate: /C=US/ST=NY/L=New York/O=Courier Mail Server/OU=Automatically-generated IMAP SSL key/CN=localhost/[EMAIL PROTEC
hi all,
when i try to connect to imap server i get this and the script aborts.
what should i do to fix.
Certificate failure for localhost: self signed certificate: /C=US/ST=NY/L=New
York/O=Courier Mail Server/OU=Automatically-generated IMAP SSL key/CN=localhost/[EMAIL
PROTECTED]
consider mysel
Ok, here it goes
When I began developing in PHP a call to the imap_fetchstructure function on
an email with attachments created a 'parts' array that was indexed
numerically. Meaning I could say:
if (count($message->parts) > 0)
for ($x = 0; $x < count($message_parts); $x++)
// do some pr
Wie kann ich denn in den Betreffzeilen
möglich Umlaute entfernen?
--
Jochen Kächelin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
I'm trying to get an SSL-encrypted IMAP connection to work on my Windows
box. Here's the error message I get when attempting to connect:
Warning: imap_open(): Couldn't open stream
{:993/imap/ssl/novalidate-cert}INBOX in
D:\Dan\Projects\Mail\mail.php on line 92
I'm running Windows XP Pro, Ap
The contents of the mail file are located below
-Original Message-
From: Jason Wong [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 15, 2004 3:42 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Imap function problems
On Friday 16 January 2004 05:19, Daryl Meese wrote:
> I am having s
On Friday 16 January 2004 05:19, Daryl Meese wrote:
> I am having some strange problems -- code I tested a while back has broken
> and I'm not sure why.
>
> I am receiving an email with an attachment (testing.doc). when I get the
> message I call imap_fetchstructure then check the length of the p
Hello All,
I am having some strange problems -- code I tested a while back has broken
and I'm not sure why.
I am receiving an email with an attachment (testing.doc). when I get the
message I call imap_fetchstructure then check the length of the parts array,
which is one. It used to always be (a
Hi,
I have just installed APache 2 and PHP 4.3.3 on Linux. and my software that
i want to run on it requires both with IMAP Extension.
How can i enable IMAP Extension???
ALso would like to know if there is any sample application avl. that can
help me check my PHP with mysql.or may be a way by wh
Hi Php-general,
How exactly do I install the IMAP Package?
I have the default RedHat IMAP installed. Will installing this break
that? Or is it possible to specify those controls in the make
process? If so what path is it I need?
Thanks for any help
Michael
--
Best regards,
Mi
[snip]
yes
[/snip]
Have you checked that PHP has IMAP enabled by loading up a phpinfo()
page?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
yes
-Ursprüngliche Nachricht-
Von: Jay Blanchard [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 26. August 2003 16:23
An: Moritz Steiner; PHP
Betreff: RE: [PHP] imap problem
[snip]
I downloaded imap as indicated on php.net/imap, compiled it, and
recompiled php with --with=imap. Ok
[snip]
I downloaded imap as indicated on php.net/imap, compiled it, and
recompiled php with --with=imap. Ok everything worked fine, no error
messages, but when I call the function imap_open() I get the following:
Fatal error: Call to undefined function: imap_open() in
/usr/apache/htdocs/mail.php
I downloaded imap as indicated on php.net/imap, compiled it, and
recompiled php with --with=imap. Ok everything worked fine, no error
messages, but when I call the function imap_open() I get the following:
Fatal error: Call to undefined function: imap_open() in
/usr/apache/htdocs/mail.php on lin
Why are imap(pop3) functions so slow? I am working on a webmail and it
takes foreer to get 12 headers. I also looked at other php webmails and
they are just as bad. I tested a pop3 function library I found on the
net and it retrievs all 12 messages in no time.
--
Regards, Andu Novac
--
PHP Gene
Hi all;
When I dowload the source code of php and i compiled it in linux ...
Does the full source code has everything i need , because when i serach the
rmps i found many packeges like php-imap / php-mssql /php-devel / php-mysql
/ php-ldap /php-odbc...
and if i want php to be compiled with gd
quot;--with-XXX=/some/directory".
> because when i serach the
> rmps i found many packeges like php-imap / php-mssql /php-devel / php-mysql
> / php-ldap /php-odbc...
If you're compiling your own php then you need not worry about those.
> and if i want php to be compiled with g
The manual says that the majority of IMAP commands can be used for NNTP
access.
This code works fine.
$status =
imap_status($nntp,"{news.gradwell.net:119/nntp}#news.gradwell.
lists.test",SA_ALL);
if($status)
{
print("Messages: ". $status->messages )."\n";
print("Recent: ". $status->
I have just recently written a complete webmail software using PHP, and
need to implement features that determin whether the email has been read
or not.
The function imap_setflag_full can set the flag, but i have no way of
seeing which e-mails have what flags.
imap_search allows you to search
On Saturday 05 April 2003 05:58, Alec Wallis wrote:
> Thanks for the suggestions, I have tried them all but with no joy. Still
> exactly the same problem. Pretty sure its not my SMTP server as using
> Outlook it works fines. Any other ideas as would prefer not to have to use
> the mail() functio
: "Mario Soto" <[EMAIL PROTECTED]>
To: "Alec Wallis" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Friday, April 04, 2003 6:04 PM
Subject: Re: [PHP] imap mail() problems
Try first to take off the \r char on the string. It worked very good for me
using only th
On Saturday 05 April 2003 01:04, Mario Soto wrote:
> Try first to take off the \r char on the string. It worked very good for me
> using only the \n to send more headers.
Headers *should* be delimited by "\r\n" ...
> Other is to put the address into
> angle bracets (<[EMAIL PROTECTED]>) and in
;t let you to do that. Other add
the CC address to $strSubject separated with a semi colon and still use the CC extra
header.
Greetings, and my best wishes.
Mario Soto
[EMAIL PROTECTED]
-.-.-.-
- Original Message -
From: Alec Wallis
To: [EMAIL PROTECTED]
Sent: Thursday, April 03, 2003 1
Hi
I am experiencing problems with the mail functions, in that I can not send emails to
multiple addresses in the to field, or send Cc's. The multiple addresses show up in
the email when it arrives to the first email address, but the other copies never
arrive.
The code I use is:
mail($strTo,
When contacting the imap-uw server I've built with plaintext and ssl
support, I get "Certificate failure for localhost: self signed
certificate: /C=NO/ST=Oslo/L=Oslo/O=religion.no/OU=religion.no/CN=doriath/CN=localhost"
when contacting it through php. How can I make php accept my certificate?
And i
Hi,
I'm running FreeBSD 4.8RC, c-client 2002, imap-uw 2002 and PHP 4.3.1
(tried a couple of other versions, but they give me the same error).
Whenever I use imap_open() to localhost, I get the following error:
Mar 20 00:20:29 doriath imapd[43632]: Command stream end of file, while reading line
u
- Original Message -
From: "Jason Wong" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, March 01, 2003 1:42 AM
Subject: Re: [PHP] IMAP error while compiling PHP-4.3.0
> On Saturday 01 March 2003 06:30, Patrick Teague wrote:
> > I'm trying to co
On Saturday 01 March 2003 06:30, Patrick Teague wrote:
> I'm trying to compile php on Mandrake 9, but this latest error during
> compile has me stumped as I've installed all the imap-devel type rpms.
>
> .
> checking for IMAP support... yes
> checking for pam_start in -lpam... yes
> checking fo
I'm trying to compile php on Mandrake 9, but this latest error during
compile has me stumped as I've installed all the imap-devel type rpms.
.
checking for IMAP support... yes
checking for pam_start in -lpam... yes
checking for crypt in -lcrypt... (cached) yes
configure: error: Cannot find ima
i am referring to imap_get_quota manpages at
http://www.php.net/manual/en/function.imap-get-quota.php
it gave a short script (see bottom).
question: in a qmail-ldap/courier-imap environment, who is that mailadmin ?
-- script start --
$mbox = imap_open("{your.imap.host}","mailadmin","password",O
On Tuesday 26 November 2002 03:14, Greg wrote:
> Can I user php to create IMAP mailboxes? I'm using Cyrus and php and
> apache are running on the same computer as Cyrus. Thanks!
The short answer is, yes.
The long answer is, if you have to ask then no.
Try searching the archives for something a
Can I user php to create IMAP mailboxes? I'm using Cyrus and php and apache
are running on the same computer as Cyrus. Thanks!
-Greg
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
PHP's imap functions are a thin wrapper on top of the c-client library.
Your best resource would be to go check the docs for that.
-Rasmus
On Sun, 17 Nov 2002, Bill Rowell wrote:
>
> i've been doing some development using php's imap functions. i'm
> wondering if its possible to use imap_open to
i've been doing some development using php's imap functions. i'm
wondering if its possible to use imap_open to open mailboxes that are
stored in a user's personal space and not in /var/spool/mail. thanks!
-bill
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://w
Hi all !
What I am missing?
I have script using IMAP function to open my mailbox- First I open the IMAP
using imap_open. After I read all my messages in my INBOX, up until now,
everything goes well. Now I want to open other folders and I can't.
I've trying these following functions:
- imap_getmai
I am getting the following when i try to connect to an imap server with PHP
4.1.2
whatever i run gives this message when i try to connect to the imap
server( i.e. i try connecting with IMP and a completely different webmail
program)
-
server="localhost" user="cmw" mailbox="{lo
I am getting the following when i try to connect to an imap server with PHP
4.1.2
whatever i run gives this message when i try to connect to the imap
server( i.e. i try connecting with IMP and a completely different webmail
program)
-
server="localhost" user="cmw" mailbox="{lo
Hi all imap gurus out there,
I have sruggling for quite some time to get the
imap_mail_move() function to work.
Imap server : Courier IMAP
PHP Version : 4.1.2
where $msg is an array of imap-mailid's which are to be moved from INBOX to
$movetofolder.
But the above code is not working and is n
Hi guys,
just wondering if there is any easy way to set a timeout on
the Imap Open function. I've written a script that polls
about 50 different peoples e-mail accounts and sometimes it
gets stuck on a few accounts that are taking ages to
respond.
Any thoughts would be gratefully received.
Che
To those of you reading this,
I'd like to submit the following patch for testing by the general public.
It should add a few bug fixes to the IMAP quota system, and some new
features. Unfortunately I cannot test this out, as my local machine
cannot build cclient (for some unknown reason), and the
the important part (without this line the script works):
$mbox = imap_open ("{localhost/imap}INBOX","", "");
it`s the same without "INBOX"
i also tried different downloaded mailbox scripts so i think it's a
php-system problem.
Latex Master <[EMAIL PROTECTED]> schrieb in im Newsbeitrag:
Hello Korbinian,
Can you provide the script code?
Let's see how we can help
Wednesday, July 17, 2002, 4:50:44 PM, you wrote:
KS> when i try to connect to my local imap server by php i get the message
KS> (standard ie message) that the page can't be shown. with another server
KS> (imap.web.
when i try to connect to my local imap server by php i get the message
(standard ie message) that the page can't be shown. with another server
(imap.web.de) everything works fine. with outlook i can access my server
without any problems and also mtest seems to work without any errors. what's
wrong
Try localhost:143/notls there
On Wed, 10 Jul 2002, [gb2312] ÚÈ Ñ« wrote:
>
> Hi all,
> I got a problem when I use php's imap functions in rh7.3 system.
> In the php script file imaptest.php I wrote such code:
>
> $user="usernamexxx";
> $password="passxxx";
> $mbox = imap_open ("{localhost:143}
Hi all,
I got a problem when I use php's imap functions in rh7.3 system.
In the php script file imaptest.php I wrote such code:
$user="usernamexxx";
$password="passxxx";
$mbox = imap_open ("{localhost:143}", $user, $password)
or die("can't connect: ".imap_last_error()
But when I use ko
CTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 19, 2002 7:58 PM
Subject: [PHP] imap support breaking...
> I couldn't get sessions working on my old broke install so i formatted and
> im redoing everything... this time i want to incorporate IMAP support so i
> can run IMP o
At this point in the make I get this error related to --with-imap and
--with-ssl-imap ...I believe
Making all in .
make[1]: Entering directory `/usr/lib/php-4.2.1'
/bin/sh /usr/lib/php-4.2.1/libtool --silent --mode=link gcc -I.
-I/usr/lib/php-4.2.1/ -I/usr/lib/php-4.2.1/main -I/usr/lib/php-4.2.1
At this point in the make I get this error related to --with-imap and
--with-ssl-imap ...I believe
Making all in .
make[1]: Entering directory `/usr/lib/php-4.2.1'
/bin/sh /usr/lib/php-4.2.1/libtool --silent --mode=link gcc -I.
-I/usr/lib/php-4.2.1/ -I/usr/lib/php-4.2.1/main -I/usr/lib/php-4.2.1
I managed to be somewhat succesfull while trying to get PHP4 and IMP to get
quota information from my IMAP server (Vircom's VOPMail for Windows
NT/2000 - available from www.vircom.com).
I changed the script a little bit to talk right to Vircom's IMAP server but
its response differs a little from
On Mon, 2002-04-22 at 12:29, Tarjei Huse wrote:
> Hi,
>
> I'm running a cuple of servers with php + mysql. Now, on one server I am
> running a setup with PHP 4.0.6 (patched for security) and Cyrus Imapd
> 1.5.x. I am having large problems getting this to work. The server
> functions w/o problems
Hi,
I'm running a cuple of servers with php + mysql. Now, on one server I am
running a setup with PHP 4.0.6 (patched for security) and Cyrus Imapd
1.5.x. I am having large problems getting this to work. The server
functions w/o problems except that it segfaults every time I use the
imap-open call
Hi,
i am running php with IMAP extension on my apache Red Hat 7.2 machine, but i always
have trouble with it.
After a while my script simply crashes:
[Mon Apr 1 17:53:25 2002] [notice] child pid 15338 exit signal Segmentation fault (11)
I thought it may be related to too many open imap_open()
your
server accidentally misconfigured some files. You can re-install IMAP
server. I suggest using RPM instead of compiling source. Download from
rpmfind.net. That's the easier and hassle-free way. I don't think you need
to re-configure PHP after installing IMAP, provided the PHP-IMAP
hm,
maybe reinstall imap?
Can i simply reinstall it, or do i also have to configure php again, if i do so?
Regards,
Hendrik
Hi,
i uploaded a script, which checks my inbox for new messages by using the imap
extension for php.
However, everything was working just fine, but now every time i try to access my
script, i get a "server not found" error and the logs say:
[Wed Mar 27 21:21:13 2002] [notice] child pid 11854 e
> What I want to do is, check my POP3 server for messages, download those
> messages into my MySQL DB. I want to retrieve the FROM, SUBJECT, HEADER
and
> BODY from the messages and place them in the corresponding mysql fields.
This script I wrote last summer may help you some what.. it handles
1 - 100 of 154 matches
Mail list logo