Áñ°Üã±â
  °Ë»ö     Áú¹®Çϱâ | µµ¿ÍÁÖ¼¼¿ä
Tip&Tech  | OS Install  | Çϵå¿þ¾î  | ¼ÒÇÁÆ®¿þ¾î  | ÁÖº¯±â±â  | ȨÆäÀÌÁö  | Á¶¸³  | OpenMarket  | Talk  | Download
Á¶È¸ 291312´ñ±Û 3³¯Â¥ 2008-05-28 19:23:18
À©µµ¿ì¿ë sendmail ÇÁ·Î±×·¥
(¿î¿µÀÚ) IP: 222.120.95.38  Ãßõ: 1039
ÆÄÀϸí: sendmail.zip ¿ë·®: 0.461 MB ´Ù¿î·Îµå: 1881       
Ãâó: www.glob.com.au/sendmail



fake sendmail for windows
fake sendmail
© 2004-2008 byron jones
bsd license
glob.com.au/sendmail
sendmail @ glob.com.au
about
sendmail.exe is a simple windows console application that emulates sendmail's "-t" option to deliver emails piped via stdin.

it is intended to ease running unix code that has /usr/lib/sendmail hardcoded as an email delivery means.

it doesn't support deferred delivery, and requires an smtp server to perform the actual delivery of the messages.

install
download sendmail.zip
copy sendmail.exe and sendmail.ini to \usr\lib on the drive where the unix application is installed
eg. if your application is installed in c:\bugzilla, sendmail.exe and sendmail.ini need to be copied to c:\usr\lib\sendmail.exe and c:\usr\lib\sendmail.ini.
configure smtp server and default domain in sendmail.ini
if you require TLS/SSL support, download sendmail-SSL.zip and extract into the same directory as sendmail.exe
or download the installer (for bugzilla installs).

some people have has performance issues using my fake sendmail with gmail's smtp servers (due to SSL/TLS). msmtp may be a viable alternative to fake sendmail.

using fake sendmail
generally all you need to do is install sendmail.exe in \usr\lib, and existing code that calls /usr/lib/sendmail will work.

if you're coding new applications, all you need to do is construct your email message with complete headers, then pipe it to /usr/lib/sendmail -t

for example, to use fake sendmail from the command line:

@ECHO OFF
REM send email from command line via SMTP with sendmail

ECHO From: byron@example.com > %TEMP%\temp.mail
ECHO To: someone-else@example.com. >> %TEMP%\temp.mail
ECHO Subject: this is a test >> %TEMP%\temp.mail
ECHO.>> %TEMP%\temp.mail
ECHO testing. >> %TEMP%\temp.mail
ECHO blah blah.. >> %TEMP%\temp.mail
ECHO. >> %TEMP%\temp.mail
ECHO blah. >> %TEMP%\temp.mail

sendmail -t < %TEMP%\temp.mail

DEL %TEMP%\temp.mail

note ECHO. puts a blank line in the file, not a line with a single period on it.

note: if you have IIS installed, you can send emails without any third party programs (you do NOT need my sendmail wrapper).

@ECHO OFF
REM send email from command line via IIS

REM change this path to point to IIS's pickup directory
SET root=c:\InetPub\MailRoot\Pickup

REM set up temp and eml filenames
IF NOT EXIST %root%\temp MKDIR %root%\temp
:setTempFileName
SET tmp=%RANDOM%
IF EXIST %root%\temp\%tmp%.tmp GOTO setTempFileName
SET eml=%root%\%tmp%.eml
SET tmp=%root%\temp\%tmp%.tmp

REM build the email. ^ is the escape character
ECHO From: bob.smith@example.com> %tmp%
ECHO To: sally.jones@example.com>> %tmp%
ECHO Subject: Example>> %tmp%
ECHO Content-Type: text/html>> %tmp%
ECHO.>> %tmp%
ECHO ^This is a test^>> %tmp%

REM move the temp file into the pickup directory for delivery
RENAME %tmp% %eml%

troubleshooting
range check error
i've had a few reports of sendmail returning a "range check error". i have tracked this to a bug in the indy sockets library and it has been fixed in version 18. see bug 63 for details.

socket error # 10053 software caused connection abort
some anti-virus product limit what applications are allowed to send mail via port 25 (SMTP). ensure that sendmail.exe is in your list of approved applications.

socket error # 11004 valid dns name - no data record of requested type
socket error 11004 means that the dns server which sendmail is talking to does not have a record of the appropriate type for the com puter name which it was looking up.

this can happen if the dns server is currently incorrectly configured (check with your isp, or whoever is running the dns server you are using) or because you should be using a different computer name which would have an a record defined.

in some cases it can also happen because you are using the incorrect dns server addresses (eg using the dns servers of one isp when you are dialing into a second isp).

572 relay not authorized, 554 Relay access denied
it means that you have been denied access to that smtp server by its administrator. administrators prevent abuses of their smtp relay servers by requiring that you send e-mail only from a computer connected to their network, or that you use some type of authentication.

talk to the server's administrator and ask what are the requirements for connecting to the server. sometimes, the server may need to be reconfigured.

debug logging
uncomment the debug_logfile entry in sendmail.ini resend a failed message. this should create debug.log in the same directory as sendmail.exe showing the complete SMTP transcript.

help and support
if you require assistance in setting up sendmail, please follow the directions on the help page.

license and source
this program is released under the bsd license.

the license details and full source (delphi 2005) are included in the zip.

version history

version 23 apr 24, 2008
- fix timezone in date header

version 22 jan 14, 2008
- fixes to error handling

version 21 jan 2, 2008
- added TLS support

version 20 apr 3, 2007
- fixed race condition in IIS's pickup delivery

version 19 jul 24, 2006
- added support for delivery via IIS's pickup directory
- optionally reads settings from the registry (in absense of the ini file)

version 18 may 1, 2006
- fix for indy 10 "range check error"

version 17 nov 2, 2005
- only process message header
- optionally use madexcept for detailed crash dumps
- added smtp_port setting

version 16 sep 12, 2005
- send hostname and domain with HELO/EHLO
- configurable HELO/EHLO hostname
- upgraded to indy 10

version 15 aug 23, 2005
- fixes error messages when debug_logfile is not specified

version 14 jun 28, 2005
- errors output to STDERR
- fixes for delphi 7 compilation
- added 'connecting to..' debug logging
- reworked error and debug log format

version 13 jun 8, 2005
- added fix to work around invalid multiple header instances

version 12 apr 30, 2005
- added cc and bcc support

version 11 feb 17, 2005
- added pop3 support (for pop before smtp authentication)

version 10 feb 11, 2005
- added support for specifying a different smtp port

version 9 sep 22, 2004
- added force_sender

version 8 sep 22, 2004
- *really* fixes broken smtp auth

version 7 sep 22, 2004
- fixes broken smtp auth

version 6 sep 22, 2004
- correctly quotes MAIL FROM and RCPT TO addresses in <>

version 5 sep 16, 2004
- now sends the message unchanged (rather than getting indy
to regenerate it)

version 4 aug 17, 2004
- added debug_logfile parameter
- improved error messages

version 3 jul 15, 2004
- smtp authentication support
- clearer error message when missing from or to address
- optional error logging
- adds date header if missing

version 2 jul 6, 2004
- reads default domain from registry (.ini setting overrides)

version 1 jul 1, 2004
- initial release

 
1 2
´ñ±Û
Paris escort
IP: 176.195.230.55 ³¯Â¥: 2012-10-11 07:59:22 X
Áö±ÝÀº ³»°¡ ¿øÇÏ´Â Á¤È®È÷ ¸Â´Â Á¤º¸¸¦ qaboard.co.kr À» ¹ß°ß ±â»Ú´Ù ! ÇູÀ» ºô¾î ¿ä
escort UAE
IP: 176.195.238.132 ³¯Â¥: 2012-11-08 10:26:51 X
³ª´Â À¥ ·Î±× ³»¿ëÀ» º¸·Á¸é ´ÙÀ½ ½Ã°£ , ³ª´Â ÀÌ ¾Æ´Ï¶ó ¸¹Àº À¸·Î ³ª¸¦ ½Ç¸Á½ÃÅ°Áö ¾Ê´Â ¹Ù¶ø´Ï´Ù. ³» ¸»Àº ¹è¿ï ³»°¡ ¼±ÅÃÇÑ ¾Ë¾Æ¿ä , ÀÇ¹Ì ,ÇÏÁö¸¸ ³­ Á¤¸» ÇÒ ¸»ÀÌ Àç¹ÌÀÖ´Â °Ô ÀÖ¾î¿ä youd »ý°¢ . ³»°¡ µè´Â °Ç ¸ðµÎ °¡ °ü½ÉÀ» ÇÏ´À¶ó ¹Ù»Ú½Ã À» werent ÇØ¾ß ÇÕ´Ï´Ù ´ç½ÅÀÌ º¹±¸ ÇÒ ¼ö ÀÖ´Â °Í¿¡ ´ëÇØ Â¡Â¡ ÀÇ ¹«¸® ÀÔ´Ï´Ù. ´ç½Å¿¡°Ô Çà¿îÀ» º÷´Ï´Ù !
Paris escorte
IP: 176.195.92.45 ³¯Â¥: 2012-11-28 23:53:17 X
¾ÆÁÖ ÁÁÀº ¼Ò½ÄÀÔ´Ï´Ù. ³­ ±×³É qaboard.co.kr ¿¡ ¿ì¿¬È÷ ³»°¡ Á¤¸» ºí·Î±× °Ô½Ã¹°À» °Ë»ö Áñ±æ °ÍÀ» ¸»ÇÏ°í ½Í¾ú¾î¿ä. °á±¹ ´ç½ÅÀÇ RSS ÇÇµå ¿¡ °¡ÀÔ µË´Ï´Ù ±×¸®°í ´ç½ÅÀÌ °ð ´Ù½Ã ÀÛ¼º ¹Ù¶ø´Ï´Ù! ´ç½Å¿¡°Ô Çà¿îÀ» º÷´Ï´Ù
À̱ۿ¡ ´ëÇÑ º»¹®/´ñ±ÛÀÌ µµ¿òÀÌ µÇ¾ú´Ù¸é Æò°¡ÇØÁÖ¼¼¿© !
Good
    Download ( 987 °Ç )
[Download] ±×·¡ÇÈ,»ç¿îµå,¸ÞÀκ¸µå, µå¶óÀ̹ö ã¾ÆÁÖ´Â ÇÁ·Î±×·¥ 3dp_chip v17.11    2018.03.19 | Á¶È¸¼ö 413256 | ´ñ±Û 9 | Ãßõ 580
Ãâó : http://www.3dpchip.com/3dp/chip_down_kor.php www.vga.pe.kr ÆÛ¿Ô½À´Ï´Ù. vga.pe.kr »çÀÌÆ®°¡ ¾È¿­¸®¸é~ ^^; µå¶óÀÌºê °Ë»öÀº http://simfile.chol.com/ http://pds.hanafos.co..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] High Definition Audio Codec- realtek »ç¿îµå µå¶óÀ̹ö R266    2012.01.03 | Á¶È¸¼ö 312399 | ´ñ±Û 3 | Ãßõ 480
Ãâó: http://www.realtek.com.tw ´Ù¿î·Îµå Ãâó :
ÀÛ¼ºÀÚ: ¿µÀÚ
[Download] Å°º¸µå °Ë»ç Å×½ºÆ® ÇÁ·Î±×·¥ Keyboard test    2022.11.15 | Á¶È¸¼ö 310768 | ´ñ±Û 0 | Ãßõ 26
Ãâó: http://mile.tistory.com/25  
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] À©µµ¿ì¿ë sendmail ÇÁ·Î±×·¥    2008.05.28 | Á¶È¸¼ö 291312 | ´ñ±Û 3 | Ãßõ 1039
Ãâó: www.glob.com.au/sendmail fake sendmail for windows fake sendmail © 2004-2008 byron jones bsd license glob.com.au/sendmail sendmail @ glob.com.au about sendmail.exe is a simple windows console application that emulates sendmail's "-t" option to deliver emails piped via stdin. it is intended to ease running un..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] À©µµ¿ì 7,8 ¾ÏÈ£ ÃʱâÈ­ ÇÏ±â    2014.04.10 | Á¶È¸¼ö 286814 | ´ñ±Û 0 | Ãßõ 1140
ÇÁ·Î±×·¥Ãâó: http://pogostick.net/~pnh/ntpasswd/ This is a utility to reset the password of any user that has a valid local account on your Windows system. Supports all Windows from NT3.5 to Win8.1, also 64 bit and also the Server versions (like 2003, 2008, 2012) You do not need to know the old password to set a new one. ..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] SmartSniff v1.30 ÀÚ½ÅÀÇ ·£Ä«µå ¸ð´ÏÅ͸µ ÇÁ·Î±×·¥    2007.07.13 | Á¶È¸¼ö 239952 | ´ñ±Û 0 | Ãßõ 1088
SmartSniff v1.30 Copyright (c) 2004 - 2006 Nir Sofer Web site: http://www.nirsoft.net Description SmartSniff allows you to capture TCP/IP packets that pass through your network adapter, and view the captured data as sequence of conversations between clients and servers. You can view the TCP/IP conversations in Ascii mode (for text-b..
ÀÛ¼ºÀÚ: ¿µÀÚ
[Download] Change Mac Address 5.3 ¸ÆÁÖ¼Ò º¯°æ ÇÁ·Î±×·¥    2007.07.13 | Á¶È¸¼ö 236478 | ´ñ±Û 71 | Ãßõ 387
·£Ä«µåÀÇ ¹°¸®ÀûÀÎ ÁÖ¼Ò¸¦ º¯°æÇÒ ¼ö ÀÖ´Â ÇÁ·Î±×·¥ÀÔ´Ï´Ù. Register Äڵ带 ÀÔ·ÂÇØ¾ß Á¤»ó »ç¿ë°¡´ÉÇÏ¸ç ±âº»»ç¿ëÀº '0a0a0a0aXXXX' Áß¿¡¼­ µÞÀÚ¸® 4ÀÚ¸®¸¸ º¯°æ°¡´ÉÇÕ´Ï´Ù. ^^ º¯°æµÇ¸é Àü ¸ÆÁÖ¼Ò·Î º¹±Í°¡ ¾ÈµÇ¹Ç·Î Àû¾îµÎ¼¼¿ä Ãâó: http://hackersnews.org/hn/read.cgi?board=hn_hack&y_number=1773&nnew=2
ÀÛ¼ºÀÚ: ¿µÀÚ
[Download] ÀÎÅÚĨ¼Â Intel¢ç ME 8: Management Engine Driver for Intel 6 & 7 Series Chipset-Based Desktop Boards    2012.08.09 | Á¶È¸¼ö 236257 | ´ñ±Û 0 | Ãßõ 368
Ãâó: http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=21527&lang=eng&OSVersion=Windows%207%20(32-bit)*&DownloadType=Drivers%20 Operating Systems:Windows 7 (32-bit)*, Wind..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] ÄÄÆÑ ÁöÆ÷½º go6100 f700 compaq µå¶óÀ̹ö ±×·¡Çȵå¶óÀ̹ö    2010.12.13 | Á¶È¸¼ö 234540 | ´ñ±Û 0 | Ãßõ 216
¼öµ¿À¸·Î ¼³Ä¡ÇÏ¼Å¾ß ÇÕ´Ï´Ù.ÃֽŠµå¶óÀ̹ö°¡ ÀÖ´Ù°í Çϸé "¸ðµÎ ¾Æ´Ï¿À"¸¦ ¼±ÅÃÇϼ¼¿ä
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] PC¿¡ ÀúÀåµÈ ºñ¹Ð¹øÈ£ ÃßÃâ ÇÁ·Î±×·¥ Protected Storage PassView v1.60 Æнº¿öµå ºä¾î    2007.10.30 | Á¶È¸¼ö 230947 | ´ñ±Û 2 | Ãßõ 862
Protected Storage PassView v1.60 Copyright (c) 2002 - 2003 Nir Sofer www.nirsoft.net Description Protected Storage PassView is a small utility that reveals the passwords stored on your computer by Internet Explorer, Outlook Express and MSN Explorer. The passwords are revealed by reading the information from the Protected Storage. Star..
ÀÛ¼ºÀÚ: ¿µÀÚ
[Download] ½Ã¸ð½º,¹ÙÀÌ¿À½º Æнº¿öµå º¹±¸Åø -CmosPwd    2007.06.13 | Á¶È¸¼ö 230453 | ´ñ±Û 0 | Ãßõ 1790
========================= CmosPwd Christophe GRENIER grenier@cgsecurity.org http://www.cgsecurity.org ========================= CmosPwd is a cmos/bios password recovery tool. CmosPwd is under GNU Public License. You can freely distribute it. It can be compiled under Dos, Windows, Linux, FreeBSD and NetBSD. Platforms - Dos-Windo..
ÀÛ¼ºÀÚ: ¿µÀÚ
[Download] À©µµ¿ì 7 XP ¸ðµå »ç¿ëÇϱâ(°¡»óÈ­ XP¸ðµå-Windows Virtual PC) -Á¤Ç°ÀÎÁõ¾øÀÌ´Ù¿î°¡´É    2011.02.15 | Á¶È¸¼ö 223298 | ´ñ±Û 0 | Ãßõ 895
Ãâó: http://snoopybox.co.kr/1169MS ´Ù¿î·Îµå »çÀÌÆ®: http://www.microsoft.com/windows/virtual-pc/download.aspx À©µµ¿ì 7ÀÇ XP ¸ðµå ±â´ÉÀº ÇÁ·ÎÆä¼Å³Î ¿¡µð¼Ç À̻󿡼­¸¸ »ç¿ë °¡´ÉÇÑ °ÍÀ¸·Î ´Ùµé ¾Ë°í °è½Ç °ÍÀÔ´Ï´Ù. ÇÏÁö¸¸ Á¤È®È÷ Ç¥ÇöÇÏÀÚ¸é ¹öÃß¾ó PCÀÇ ÅëÇÕ ±â´É »ç¿ëÀ» ÇÁ·ÎÆä¼Å³Î ¿¡µð¼Ç ÀÌ»óÀ¸·Î¸¸ Á¦ÇÑÇصР°ÍÀÌ ¾Æ´Õ´Ï´Ù. XP ¸ðµåÀÇ »ç..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] ÇÑ±Û ÆÄƼ¼Ç¸ÅÁ÷ v8.0 Kor (PowerQuest PartitionMagic 8.0)    2007.06.07 | Á¶È¸¼ö 214227 | ´ñ±Û 3 | Ãßõ 978
½ÃµðÅ°°¡ ÀÖ¾î¾ß ÇÕ´Ï´Ù. ^^ PowerQuest(R) PartitionMagic(R) ¹öÀü 8.0 ¸ñÂ÷ ---- 1. ½Ã½ºÅÛ ¹é¾÷ 2. ÀϹÝÀûÀÎ »ç¿ë¹ý 3. ¾Ë·ÁÁø ¹®Á¦Á¡ - Windows NT/2000/XP¿¡¸¸ ÇØ´ç 4. ¾Ë·ÁÁø ¹®Á¦Á¡ - Windows 9x¿¡¸¸ ÇØ´ç 5. Windows Me Á¦°Å 6. PowerQuest Storage Manager ¼Ò½ÄÁö 1. ½Ã½ºÅÛ ¹é¾÷ -------------- PartitionMagicÀ» »ç¿ëÇϱâ Àü¿¡ ÇÏµå µå¶óÀ̺긦 ¹é¾÷ÇØ¾ß ÇÕ´Ï´Ù. PartitionMagicÀº öÀúÇÑ Å×½ºÆ®¸¦ °ÅÃÆÁö¸¸ Á¤Àü, ¿î¿µ üÁ¦ ¹ö±× ¹× ..
ÀÛ¼ºÀÚ: ¿µÀÚ
[Download] IEFix 1.6v À¥ºê¶ó¿ìÀú ¹®Á¦(¿À·ùµî)¹ß»ý½Ã º¹¿øÇØÁÖ´Â ÇÁ·Î±×·¥    2007.06.30 | Á¶È¸¼ö 207526 | ´ñ±Û 3 | Ãßõ 568
À¥ºê¶ó¿ìÀú »ç¿ë½Ã ¿À·ù¸¦ ¼öÁ¤ÇØÁÖ´Â ÇÁ·Î±×·¥ÀÔ´Ï´Ù. ÀͽºÇ÷η¯ 7.0Àº Å×½ºÆ®µÇÁö ¾Ê¾Ò½À´Ï´Ù. À©µµ¿ì exploer »ðÀÔÇ϶ó°í ³ª¿Ã°æ¿ì cd¾ø´ÂºÐµé À©µµ¿ì xp ÆÄÀÏÀº ¾Æ·¡ ´Ù¿î¹Þ¾Æ À§Ä¡ ¼±Á¤Çϼ¼¿ä 2¹ø ³ª¿À´Âµ¥ Áß¿ä:-->>> ÆÄÀÏ ¼±ÅÃÇϽøéµË´Ï´Ù. [XP_CD ¾ø´ÂºÐµé ´Ù¿î·Îµå] À©µµ¿ì98Àº ÇÊ¿ä¾øÀ½~ * Âü°í: ÇÁ·Î±×·¥ ½ÇÇà½Ã 429 ·±Å¸..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] µå¶óÀ̹ö ÆÑÅ°Áö - ¹«¼±·£    2008.11.12 | Á¶È¸¼ö 205649 | ´ñ±Û 0 | Ãßõ 6333
Ãâó: http://driverpacks.net 3Com 3CRPAG175 PCMCIA a/b/g 07/11/2003,1.0.0.25 3a 3Com 3CRSHEW696 USB b 1/28/2003, 1.0.1.14 3b 3Com 3CRDAG675 PCI  a/b/g 08/01/2003, 1.0.0.25 3c 3Com 3CRWE154A72 PCMCIA  a/b/g 04/07/2004, 3.0.0.46 3d 3Com 3CRWE62092B PCMCIA  b 08/04/2003, 2.1.1.3005 3e 3Com 3CRWE62..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] d3d9.dll ÆÄÀÏ    2007.05.30 | Á¶È¸¼ö 203759 | ´ñ±Û 10 | Ãßõ 160
DirectX 9.0c Áß dll ÆÄÀÏ
ÀÛ¼ºÀÚ: ¿µÀÚ
[Download] ¾Æ¸® ÇÁ·Î±×·¥ -½Ã°£Á¦ÇÑ ÇÁ·Î±×·¥ V1.77    2008.12.10 | Á¶È¸¼ö 203544 | ´ñ±Û 11 | Ãßõ 655
Ãâó: http://www.jonetech.net/* ÇÁ·Î±×·¥ Ư¡ * 1. º°µµÀÇ ÀåÄ¡¾øÀÌ ÇÁ·Î±×·¥ ¸¸À¸·Î ÄÄÇ»ÅÍ »ç¿ë½Ã°£À» Á¦ÇÑÇÒ ¼ö ÀÖ½À´Ï´Ù.2. ÄÄÇ»ÅÍ ½Ã°£ÀÌ ½ÇÁ¦ ÇöÀç ½Ã°£À¸·Î ÀÚµ¿ µ¿±âÈ­ µË´Ï´Ù.3. ¾ÏÈ£ ¾øÀÌ ¼³Á¤À» º¯°æÇϰųª Àý´ë Á¦°ÅÇÒ ¼ö ¾ø½À´Ï´Ù.4. »ç¿ë¹æ¹ýÀÌ ¸Å¿ì °£´ÜÇÏ°í ½±½À´Ï´Ù.5. ÀüÀÏ ÄÄÇ»ÅÍ »ç¿ë½Ã°£À» ¸ÞÀÏ·Î ¹Þ¾Æ º¼ ¼ö ÀÖ½À´Ï´Ù.6. ´ÙÁß »ç¿ëÀÚ¸¦ Áö¿øÇÕ´Ï´Ù.7. »ç¿ë½Ã°£ Á¦ÇÑ ¿Ü¿¡ ±â´É¿¡´Â Á¦ÇÑÀ» µÎÁö ¾Ê¾ÒÀ¸¹Ç·Î »ç¿ë¿¡ ºÒÆíÀÌ ¾ø½À´Ï´Ù.    (¿¹, ·¹Áö½º..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] ¹«¼³Ä¡ ´ÜÀÏ ÆÄÀÏ ¹«·á ¿ø°Ý Á¢¼Ó ÇÁ·Î±×·¥ ¼öÇÁ¸®¸ð Supremo    2013.01.27 | Á¶È¸¼ö 196159 | ´ñ±Û 1 | Ãßõ 169
¸µÅ©: http://www.supremofree.com/free-remote-desktop-download-en.aspx
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] Canon ·¹ÀÌÀú ÇÁ¸°ÅÍ PCL5 ÅëÇÕµå¶óÀ̹ö v8.0 for Windows 2000/xp/2003/vista 32bit    2011.06.10 | Á¶È¸¼ö 194935 | ´ñ±Û 0 | Ãßõ 1383
Ãâó: http://www.windowdrv.com/bbs/board.php?bo_table=drv_printer&wr_id=614ij³í PCL5e/PCL5c ÇÁ¸°ÅÍ µå¶óÀ̹ö VER 8.0 (Çѱ۹öÀü) ÀÔ´Ï´Ù. ÆÄÀÏÀ» ´Ù¿î ¹ÞÀº ÈÄ ¾ÐÃàÀ» Ç®¸é C:\CANON µð·ºÅ丮¿¡ ÀÚµ¿À¸·Î ¾ÐÃàÀÌ Ç®¸³´Ï´Ù. ÇÁ¸°ÅÍ µå¶óÀ̹ö ¼³Ä¡´Â Á¦¾îÆÇ --> ÇÁ¸°ÅÍ--> ÇÁ¸°ÅÍ Ãß°¡¸¦ ½ÇÇàÇÑ ÈÄ Á¦Á¶¾÷ü ¼±Åà ȭ¸é¿¡¼­ "µð½ºÅ© ÀÖÀ½"À» ¼±ÅÃÇÑ ÈÄ "c:\canon" µð·ºÅ丮¸¦ ÁöÁ¤..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[Download] CPU-Z 1.15 ÄÄÇ»ÅÍ »ç¾ç º¸´Â ÇÁ·Î±×·¥ -ÃÊ°£´Ü ¼³Ä¡ ÇÊ¿ä¾øÀ½    2009.07.19 | Á¶È¸¼ö 186447 | ´ñ±Û 1 | Ãßõ 377
cpp ¼º´ÉÀ» ¾Ë ¼ö ÀÖ½À´Ï´Ù. ¾Æ·¡ »çÁø ¡é ¸ÞÀκ¸µå ¸í,±×·¡ÇÈÄ«µå ½½·ÔÀ» ¾Ë ¼ö ÀÖ½À´Ï´Ù. ¾Æ·¡ »çÁø¡é ¸Þ¸ð¸® Çü½ÄÀ» ¾Ë ¼ö ÀÖ½À´Ï´Ù.¡é Á¾ÇÕÀûÀÎ Á¤º¸¸¦ html¹®¼­·Î Ãâ·ÂÇØÁÝ´Ï´Ù. ¡é * Âü°íÀÚ·á: 1. ..
ÀÛ¼ºÀÚ: ¿î¿µÀÚ
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]  ¢¹
QABoard - À©µµ¿ì¿ë sendmail ÇÁ·Î±×·¥

¢Ø°¨Ãß±â

¢ØäÆà °¨Ãß±â

»ó´ã äÆÃ: Á¢¼ÓÀÚ(1)
´ëȭâ: ¢Ù
ÁÖ¼Ò: °æ±âµµ °í¾ç½Ã Àϻ꼭±¸ ´ëÈ­µ¿ 1474-1¹øÁö
»ç¾÷ÀÚµî·Ï¹øÈ£: 128-25-69877 ´ëÇ¥ÀÚ: ±èÇö¼ö °³ÀÎÁ¤º¸°ü¸®ÀÚ:¿î¿µÀÚ
°í°´¼¾ÅÍ:031-917-9979 E-mail: bigfood77@naver.com