Welcome, Guest. Please Login or Register.
April 28, 2025, 07:43:19 AM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  English User Help  |  English Help  |  Email problems « previous next »
Pages: [1] 2 Reply Ignore Print
Author Topic: Email problems  (Read 845 times)
Fermious
Noobie
*
Posts: 16


I'm a llama!

Email problems
« on: January 08, 2002, 08:45:48 PM »
Reply with quote

Hello all!
GREAT job on this awesome YaBB port! I just love it!!  I was looking for a good PHP and mySQL board, but i couldn't find a good one that i liked, since i'm so used to YaBB ..and now this is yabb with the features i want!! anyhoo...about the email problems bug (or maybe not a bug)

if you go to my test board (i test everything before i actually use) at http://www.dna4141.com/html/board2 and sign up, you won' tget an email at all for ur password or anything.  if i go into the admin section and email my members, nobody gets their emails.  so i am having trouble with the email systems..can anyone please help me out?  thanks!
Logged
Joseph Fung
Global Moderator
YaBB God
*****
Posts: 4512


Keep smiling: it makes others nervous.

WWW
Re:Email problems
« Reply #1 on: January 08, 2002, 08:47:01 PM »
Reply with quote

Sounds like mail isn't configured right in the php config files.

Where are you being hosted?
« Last Edit: January 08, 2002, 08:47:13 PM by Joseph Fung » Logged

Fermious
Noobie
*
Posts: 16


I'm a llama!

Re:Email problems
« Reply #2 on: January 08, 2002, 09:09:05 PM »
Reply with quote

i know ..that's what i thought too..go here to see my php info: http://www.dna4141.com/html/phpinfo.php

tell me if there is something wrong.

thanks.
Logged
Joseph Fung
Global Moderator
YaBB God
*****
Posts: 4512


Keep smiling: it makes others nervous.

WWW
Re:Email problems
« Reply #3 on: January 08, 2002, 09:09:48 PM »
Reply with quote

I don't think I can tell from the php info - it's actually established in the config file if I remember right.

But I've never installed php myself, so I can't say... :(
Logged

Fermious
Noobie
*
Posts: 16


I'm a llama!

Re:Email problems
« Reply #4 on: January 08, 2002, 09:09:54 PM »
Reply with quote

oops..hold on..don't try th elink yet.haha.wrong file.
hold up
Logged
Fermious
Noobie
*
Posts: 16


I'm a llama!

Re:Email problems
« Reply #5 on: January 08, 2002, 09:14:32 PM »
Reply with quote

well.then what should i do?
my host says the php.ini file is properly configured..so i dunno what to do!
Logged
Fermious
Noobie
*
Posts: 16


I'm a llama!

Re:Email problems
« Reply #6 on: January 08, 2002, 09:24:55 PM »
Reply with quote

ok..the link to see my php configuration file is working..so can somebody that is familiar with this type of stuff go here:
http://www.dna4141.com/html/phpinfo.php
and tell me if they see something wrong in the config.

thanks
Logged
Jeff Lewis
Global Moderator
YaBB God
*****
Posts: 10149


I'm a llama!

WWW
Re:Email problems
« Reply #7 on: January 08, 2002, 09:39:56 PM »
Reply with quote

Your host needs to fix it, the sendmail path isn't set...look at your info file...
Logged

Jeff Lewis
Global Moderator
YaBB God
*****
Posts: 10149


I'm a llama!

WWW
Re:Email problems
« Reply #8 on: January 08, 2002, 09:40:25 PM »
Reply with quote

So should look something like:

/usr/sbin/sendmail -t -i
Logged

Fermious
Noobie
*
Posts: 16


I'm a llama!

Re:Email problems
« Reply #9 on: January 08, 2002, 09:51:14 PM »
Reply with quote

umm..no..ur wrong about that..cuz its not a *nix system..its a WinNT system..therefore only the smtp is needed, and it should use the smtp

if i create this small php script and run it:

<?php
mail("[email protected]", "the subject", $message,
     "From: webmaster@$SERVER_NAME\r\n"
    ."Reply-To: webmaster@$SERVER_NAME\r\n"
    ."X-Mailer: PHP/" . phpversion());
 ?>


i will receive it..so i conclude that the mailing part of my php.ini is fine.

it could still be my php.ini file, but not the mail section..or it could be a piece in your code that makes it incompatible with some server software.

anyhoo, thanks for trying.
Logged
Jeff Lewis
Global Moderator
YaBB God
*****
Posts: 10149


I'm a llama!

WWW
Re:Email problems
« Reply #10 on: January 08, 2002, 10:04:31 PM »
Reply with quote

Oops, guess I should read the System line and not assume every sane person is running *nix ;)

Logged

Fermious
Noobie
*
Posts: 16


I'm a llama!

Re:Email problems
« Reply #11 on: January 08, 2002, 10:09:36 PM »
Reply with quote

 ;D ;D :D ;D

LOL
ah well
Logged
CorsaCat
Noobie
*
Posts: 36


*upps*

Re:Email problems
« Reply #12 on: January 08, 2002, 10:11:24 PM »
Reply with quote

hi,

I have the same problem, (on a win2000 system).
No error message, but no mail was sent.

How can I understand, that I MUST use the smtp with win2000? I´ve tried this also - set the path to my smtp server (which also sends my normal mails), switched the mode to "1-SMTP" - but the result was the same - no mails sent.
What can be wrong? Any idea?

Cu
CorsaCat
Logged
Savageman
Noobie
*
Posts: 35


Not a llama!

Re:Email problems
« Reply #13 on: January 08, 2002, 10:14:42 PM »
Reply with quote

i may have solved our problem!!  i edited the code in subs.php to be
function sendmail($to,$subject,$message,$from) {

    global $mailtype,$webmaster_email;
    mail($to,$subject,$message,"From: $from\r\n");
}
and it worked beautifily.  i guess you could leave the if statement, but i looked where the other pages call the fxn and there is a $from, so it would not be null.  i think the problem was returning something.  w00t! im learning php through a crash course of fixing the board!
Logged
Fermious
Noobie
*
Posts: 16


I'm a llama!

Re:Email problems
« Reply #14 on: January 08, 2002, 10:15:48 PM »
Reply with quote

i'm hoping that someone can hlep us!
like i said in a previous post...the mail inside php.ini is properly configured, as i tested it with a test script, but inside yabb, it doesnt'

Logged
Pages: [1] 2 Reply Ignore Print 
YaBB SE Community  |  English User Help  |  English Help  |  Email problems « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.058 seconds with 18 queries.