PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > alt.www.webmaster > see all email send by site
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
see all email send by site

Réponse
 
LinkBack Outils de la discussion
Vieux 09/09/2007, 21h39   #1 (permalink)
artev
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut see all email send by site

if I have one php's site and not want to add other code or controll all the
coode;
is possible (and how) to see in a list all the email's address that
the site send ?
is necessary some specific software or I can see
in some log file?
the site work with apache server.
  Réponse avec citation
Vieux 09/09/2007, 22h15   #2 (permalink)
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: see all email send by site

artev wrote:
> if I have one php's site and not want to add other code or controll all the
> coode;
> is possible (and how) to see in a list all the email's address that
> the site send ?
> is necessary some specific software or I can see
> in some log file?
> the site work with apache server.


Apache isn't involved in sending mail. What you need is access to the
Mail Transfer Agent (MTA)logs. Then you'll need code (it could be PHP,
Perl or several other languages) to parse the log and display the output.

Probably the most common MTA's on Unix are sendmail and Exim.

BTW, if you're on shared hosting, I doubt you have access to this log.
And if you do, I'd change hosts immediately.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 09/09/2007, 22h33   #3 (permalink)
Brian Wakem
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: see all email send by site

Jerry Stuckle wrote:

> artev wrote:
>> if I have one php's site and not want to add other code or controll all
>> the coode;
>> is possible (and how) to see in a list all the email's address that
>> the site send ?
>> is necessary some specific software or I can see
>> in some log file?
>> the site work with apache server.

>
> Apache isn't involved in sending mail. What you need is access to the
> Mail Transfer Agent (MTA)logs. Then you'll need code (it could be PHP,
> Perl or several other languages) to parse the log and display the output.
>
> Probably the most common MTA's on Unix are sendmail and Exim.



I would think Postfix is more popular than Exim.


--
Brian Wakem
  Réponse avec citation
Vieux 09/09/2007, 22h39   #4 (permalink)
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: see all email send by site

Brian Wakem wrote:
> Jerry Stuckle wrote:
>
>> artev wrote:
>>> if I have one php's site and not want to add other code or controll all
>>> the coode;
>>> is possible (and how) to see in a list all the email's address that
>>> the site send ?
>>> is necessary some specific software or I can see
>>> in some log file?
>>> the site work with apache server.

>> Apache isn't involved in sending mail. What you need is access to the
>> Mail Transfer Agent (MTA)logs. Then you'll need code (it could be PHP,
>> Perl or several other languages) to parse the log and display the output.
>>
>> Probably the most common MTA's on Unix are sendmail and Exim.

>
>
> I would think Postfix is more popular than Exim.
>
>


Could be. I'm just not aware of them.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 09/09/2007, 22h51   #5 (permalink)
artev
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: see all email send by site

I am on vps server and have directadmin how panel;

  Réponse avec citation
Vieux 09/09/2007, 22h57   #6 (permalink)
artev
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: see all email send by site

I am on vps server and have directadmin how panel;
I am a newbie and not know all the features;
I see that have squirrelmail and uebimiau but not know if are
also goo d for make that.
  Réponse avec citation
Vieux 09/09/2007, 23h12   #7 (permalink)
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: see all email send by site

artev wrote:
> I am on vps server and have directadmin how panel;
> I am a newbie and not know all the features;
> I see that have squirrelmail and uebimiau but not know if are
> also goo d for make that.


No, those won't you.

If you have a vps, the first thing you need to do is study up on Linux
Administration and security. Otherwise you're leaving your system wide
open to all kinds of problems.

And a word of caution - I have several VPS's. They are not for the new
nor the faint of heart. You have more options available, but they take
significantly more administration - especially if you're going to have
customers on it. And your control panel will only do the most basic of
it. It won't, for instance, upgrade your OS or other products. You
need to do that yourself.

And there's a lot of manual configuration which needs to be done to have
it work well.

And your control panel won't with features like what you're looking
for. For that you'll have to find where your MTA stores its logs (and
what MTA it is) and write code to parse your log file for the
information you want.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  Réponse avec citation
Vieux 10/09/2007, 07h43   #8 (permalink)
Mark Goodge
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: see all email send by site

On Sun, 09 Sep 2007 22:33:33 +0100, Brian Wakem put finger to keyboard
and typed:

>Jerry Stuckle wrote:
>
>> artev wrote:
>>> if I have one php's site and not want to add other code or controll all
>>> the coode;
>>> is possible (and how) to see in a list all the email's address that
>>> the site send ?
>>> is necessary some specific software or I can see
>>> in some log file?
>>> the site work with apache server.

>>
>> Apache isn't involved in sending mail. What you need is access to the
>> Mail Transfer Agent (MTA)logs. Then you'll need code (it could be PHP,
>> Perl or several other languages) to parse the log and display the output.
>>
>> Probably the most common MTA's on Unix are sendmail and Exim.

>
>
>I would think Postfix is more popular than Exim.


There aren't any reliable stats, but the best approximations are that
Sendmail, Postfix, Exim and qmail are the most common Open Source
MTAs, in that order. Postfix is particularly common on small/medium
installations as it's relatively secure (compared to Sendmail) by
default and the standard installation is pretty good for most
purposes. However, Exim is much more common on "enterprise level"
servers (ie, those used by ISPs, large webhosts, etc) because it's
more flexible than Postfix and more secure than Sendmail.

So, if you're specifically comparing Postfix and Exim, it's probably
true to say that Postfix is found on more servers, but Exim handles
more mail overall. The same is true when comparing Exim and Sendmail -
Sendmail is on a lot of servers because it's still the default MTA on
a lot of Linux installations, but most of those will be small webhosts
that don't send or receive much mail. Administrators of machines that
do handle significant amounts of mail will usually install Postfix or
Exim instead.

Mark
--
Blog: http://Mark.Goodge.co.uk Photos: http://www.goodge.co.uk
"We're not the ones who're meant to follow"
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 23h03.


Édité par : vBulletin® version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,12609 seconds with 16 queries