|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
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. |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
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 ================== |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
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 ================== |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
I am on vps server and have directadmin how panel;
|
|
|
|
#6 |
|
Messages: n/a
Hébergeur: |
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. |
|
|
|
#7 |
|
Messages: n/a
Hébergeur: |
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 ================== |
|
|
|
#8 |
|
Messages: n/a
Hébergeur: |
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" |
|
![]() |
| Outils de la discussion | |
|
|