Foros del Web » Programando para Internet » ASP Clásico »

Problema con ASPBB 0.5, no se envian los mails, que puedo hacer??

Estas en el tema de Problema con ASPBB 0.5, no se envian los mails, que puedo hacer?? en el foro de ASP Clásico en Foros del Web. tengo un aspbb montado sobre un servidor de somee, el foro va bien, pero cuando el usuario quiere registrarse, no les llegan los mails de ...
  #1 (permalink)  
Antiguo 14/03/2008, 14:16
Avatar de Julcar  
Fecha de Ingreso: noviembre-2007
Ubicación: C:\inetpub\wwwroot\Guayaquil
Mensajes: 1.507
Antigüedad: 16 años, 6 meses
Puntos: 54
Problema con ASPBB 0.5, no se envian los mails, que puedo hacer??

tengo un aspbb montado sobre un servidor de somee, el foro va bien, pero cuando el usuario quiere registrarse, no les llegan los mails de confirmación.

Ya intenté configurar el servidor SMTP usando un gmail pero da igual, si alguien puede darme asistencia le estaría muy agradecido.

El servidor tiene activo el componente cdosys y el fso
  #2 (permalink)  
Antiguo 14/03/2008, 15:20
Avatar de Julcar  
Fecha de Ingreso: noviembre-2007
Ubicación: C:\inetpub\wwwroot\Guayaquil
Mensajes: 1.507
Antigüedad: 16 años, 6 meses
Puntos: 54
Re: Problema con ASPBB 0.5, no se envian los mails, que puedo hacer??

el codigo del config.asp es el siguiente:

'#################################################
'# Email settings #
'#################################################
const strEmailComponent = "CDOSYS" '//Choose from w3JMail, CDONTS or CDOSYS
const strSMTPserver = "smtp.gmail.com"
const strSenderName = "Diproweb - Diseño y Programación Web"
const strReplyAdress = "[email protected]"
const strEmailUserName ="[email protected]"
const strEmailPassword = "#$&7=k!"
  #3 (permalink)  
Antiguo 14/03/2008, 22:38
Avatar de Julcar  
Fecha de Ingreso: noviembre-2007
Ubicación: C:\inetpub\wwwroot\Guayaquil
Mensajes: 1.507
Antigüedad: 16 años, 6 meses
Puntos: 54
Re: Problema con ASPBB 0.5, no se envian los mails, que puedo hacer??

Por favor, sólo denme un servidor smtp para que pueda enviar los mails, sólo eso me falta, alguien que conozca uno.
  #4 (permalink)  
Antiguo 19/03/2008, 09:53
Avatar de mc_quake  
Fecha de Ingreso: enero-2006
Ubicación: www.ecocargo.cl
Mensajes: 683
Antigüedad: 18 años, 5 meses
Puntos: 8
Re: Problema con ASPBB 0.5, no se envian los mails, que puedo hacer??

aca hay servidores smtp suerte

http://www.foromsn.com/Version_Imprimible.php?Id=3784
__________________
Mc_Quake

Para ayudar en lo que se pueda:Zzz:
  #5 (permalink)  
Antiguo 16/09/2009, 12:24
 
Fecha de Ingreso: septiembre-2009
Mensajes: 1
Antigüedad: 14 años, 9 meses
Puntos: 0
Respuesta: Problema con ASPBB 0.5, no se envian los mails, que puedo hacer??

¿Como puedo configurar aspbb?

Entro en config con el blog de notas pero no consigo que ande cuando lo subo al servidor.

Pego el config: (¿Me puede indicar que poner en cada lugar?)

<%
Option Explicit
On Error Resume Next

Dim strTable, strAlign,strNewMail, intPmCount

'#################################################
'# Database options #
'#################################################
const db_type = 1 ' 1 = MySQL, 2 = Access
const db_Server = "localhost" ' MySQL
const db_Password = "" ' Not required for Access
const db_Username = "" ' Not required for Access
const db_Database = "" ' MySQL
const db_path = "db/aspbb. mdb" ' Only if running Access
const path = "/" 'The path to where you have the forum installed

'#################################################
'# Email settings #
'#################################################
const strEmailComponent = "CDOSYS" '//Choose from w3JMail, CDONTS or CDOSYS
const strSMTPserver = "localhost"
const strSenderName = "ASPBB Active Server Pages Bulletin Board"
const strReplyAdress = "noreply @aspbb. org"
const strEmailUserName =""
const strEmailPassword = ""

'#################################################
'# Upload settings #
'#################################################
const strComponent = "aspsmartupload" '//Choose from fso, aspupload or aspsmartupload
const avatarsize =50000
const attatchmentsize = 1200000

'#################################################
'# Customize forum settings #
'#################################################
const strForumName = "ASPBB"
const strForumAddress = "h t tp:// forum. aspbb. org/" '// End with a /

const blnShowActive = true '// Show active users plugin
const blnShowStats = true '// Show status plugin
const blnGenerateRSS = true '// Activate RSS plugin
const blnShowLatest = true '// Shall we show latest threads
const intTopicsPerPage = 15 '// How many topics to display per page as default
const intReplyPerPage = 15 '// How many replys to display per page as default
const intDisplayThreads = 5 '// For show latest threads
const blnCatGap = true '// Empty row between categories
const blnThirdColor = true '// Activate apbbcolor3 for css mouseover effect

const defaultLang = "english" '// Name of language file without trailing .lang
const requireactivation = true '// Users must confirm the registration by clicking link in email
const blnAntiBump = true '/// Regular users cant make 2 post after eachother in the same thread.
const defaultUserTitle = "Member"
const avatar_width = "60"
const avatar_height = "60"
const servertimezone = 1 '//Based on GMT
const blnDebug = true '//Show helpful forum and client settings in error catcher

'#################################################
'# Database connection strings #
'#################################################
Dim objDAL
Set objDAL = new DAL
if db_type = 1 Then
objDAL.ConnectionString = "Driver={MySQL ODBC 3.51 Driver};server="&db_Server&";uid="&db_Username&";p wd="&db_Password&";database="&db_Database&""
Elseif db_type = 2 Then
objDAL.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="& Server.MapPath(db_path) &";User Id="& db_Username &";Password="& db_Password &";"
End if
objDAL.Connect

%>
<!-- #include file="includes/dal.asp" -->
<!-- #include file="includes/languageParser.asp" -->
<!-- #include file="includes/inc_globalfunctions.asp" -->
<!-- #include file="includes/includeasp.asp" -->
<!-- #include file="includes/inc_sha256.asp" -->


Muchas gracias de antemano.
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 19:39.