Xampp fake sendmail connect timedout in error.log

  Kiến thức lập trình

I run Gmail SMTP on a Windows server 22 running Xampp server. However, the settings don’t work on my new server. This is the error I get on the sendmail error.log: “connect Time out.”
While on the Apache logs. The below code is the error I’m getting.

date/time         : 2024-08-01, 17:30:57, 934ms
computer name     : WIN-F6NF7R6I6PJ
user name         : SYSTEM <admin>
registered owner  : Windows User
operating system  : Windows NT New Tablet PC x64 build 9200
system language   : English
system up time    : 4 hours 17 minutes
program up time   : 11 seconds
processors        : 2x AMD Ryzen 7 3700X 8-Core Processor
physical memory   : 642/4095 MB (free/total)
free disk space   : (C:) 23.18 GB
display mode      : 1024x768, 32 bit
process id        : $e18
allocated memory  : 8.70 MB
command line      : "C:xamppsendmailsendmail.exe" -i
executable        : sendmail.exe
exec. date/time   : 2012-04-16 10:30
compiled with     : Delphi 2006/07
madExcept version : 3.0l
callstack crc     : $524b9ad3, $91b672ba, $91b672ba
exception number  : 1
exception class   : EIdConnectTimeout
exception message : Connect timed out.

main thread ($e6c):
0041fa42 +000e sendmail.exe IdException                    112   +1 EIdException.Toss
0044092e +014e sendmail.exe IdIOHandlerStack               279  +38 DoConnectTimeout
00440b4c +01d8 sendmail.exe IdIOHandlerStack               346  +55 TIdIOHandlerStack.ConnectClient
0046554d +0031 sendmail.exe IdSSLOpenSSL                  2086   +8 TIdSSLIOHandlerSocketOpenSSL.ConnectClient
00444a9f +0063 sendmail.exe IdIOHandlerSocket              335  +13 TIdIOHandlerSocket.Open
00465637 +0007 sendmail.exe IdSSLOpenSSL                  2122   +1 TIdSSLIOHandlerSocketOpenSSL.Open
0044157d +0235 sendmail.exe IdTCPClient                    318  +53 TIdTCPClientCustom.Connect
00445cc8 +00a4 sendmail.exe IdExplicitTLSClientServerBase  257  +23 TIdExplicitTLSClient.Connect
0045ab7b +0017 sendmail.exe IdSMTP                         373   +2 TIdSMTP.Connect
004b5f14 +1060 sendmail.exe sendmail                       808 +326 initialization
76336a37 +0017 KERNEL32.DLL                                         BaseThreadInitThunk

thread $8cc:
76336a37 +17 KERNEL32.DLL  BaseThreadInitThunk

thread $1530:
76336a37 +17 KERNEL32.DLL  BaseThreadInitThunk

stack dump:
0019fcb0  47 fa 41 00 de fa ed 0e - 01 00 00 00 07 00 00 00  G.A.............
0019fcc0  c4 fc 19 00 47 fa 41 00 - d0 51 08 01 34 b0 43 00  ....G.A..Q..4.C.
0019fcd0  28 b1 09 01 48 fd 19 00 - 14 fd 19 00 e0 fc 19 00  (...H...........
0019fce0  7d 00 00 00 00 00 00 00 - 33 09 44 00 f8 fc 19 00  }.......3.D.....
0019fcf0  c8 4b 40 00 14 fd 19 00 - 20 fd 19 00 c8 4b 40 00  [email protected]@.
0019fd00  14 fd 19 00 4b 02 00 00 - 00 00 00 00 00 00 00 00  ....K...........
0019fd10  10 9b 05 01 4c fd 19 00 - 51 0b 44 00 4c fd 19 00  ....L...Q.D.L...
0019fd20  54 fd 19 00 c8 4b 40 00 - 4c fd 19 00 b4 4e 4b 00  [email protected].
0019fd30  b0 f4 01 01 b0 f4 01 01 - 90 69 07 01 00 00 00 00  .........i......
0019fd40  00 00 00 00 00 00 00 00 - b0 f4 01 01 68 fd 19 00  ............h...
0019fd50  52 55 46 00 7c fd 19 00 - c8 4b 40 00 68 fd 19 00  RUF.|[email protected]...
0019fd60  b4 4e 4b 01 b0 f4 01 01 - b0 fd 19 00 a5 4a 44 00  .NK..........JD.
0019fd70  b0 f4 01 01 3c 56 46 00 - 83 15 44 00 88 fd 19 00  ....<VF...D.....
0019fd80  5f 4d 40 00 b0 fd 19 00 - dc fd 19 00 c8 4b 40 00  [email protected]@.
0019fd90  b0 fd 19 00 b4 4e 4b 00 - b0 f4 01 01 50 f3 01 01  .....NK.....P...
0019fda0  12 57 46 00 b0 f4 01 01 - 00 00 00 00 50 f3 01 01  .WF.........P...
0019fdb0  d4 fd 19 00 cd 5c 44 00 - b4 4e 4b 00 ff 00 00 00  .....D..NK.....
0019fdc0  80 ab 45 00 b4 4e 4b 00 - b4 4e 4b 00 ff 00 00 00  ..E..NK..NK.....
0019fdd0  50 f3 01 01 74 ff 19 00 - 1a 5f 4b 00 e8 fd 19 00  P...t...._K.....
0019fde0  c8 4b 40 00 74 ff 19 00 - f4 fd 19 00 c8 4b 40 00  [email protected]@.

disassembling:
[...]
0041fa38       mov     ebx, eax
0041fa3a 112   mov     ecx, esi
0041fa3c       mov     dl, 1
0041fa3e       mov     eax, ebx
0041fa40       call    dword ptr [eax]
0041fa42     > call    -$1ad5b ($404cec)      ; System.@RaiseExcept
0041fa47 113   pop     esi
0041fa48       pop     ebx
0041fa49       ret

Please note that I have search the stackoverflow and the internet without any solution

I want the server to be able to send out email on the xampp server

New contributor

Kenneth Onuorah is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Theme wordpress giá rẻ Theme wordpress giá rẻ Thiết kế website

LEAVE A COMMENT