목록개발이야기 (528)
준호씨의 블로그
GNU Mailutils GNU Mailutils curl curl github 사용법이 간단한편이다. curl 은 보통 http 요청 할 때 많이 사용하는데, curl 을 종종 사용하는 사람들 조차도 smtp 가 된다는 사실에 놀라곤 한다. 문제점 수신자가 여러명일 때 한명이라도 실패 하면 모두 실패한다. 보통 수신자가 여러명일 때 rcpt to 2개 중 1개가 실패 해도 발송이 되어야 되는데 curl 에서는 실패한다. https://github.com/curl/curl/issues/2483 이것은 known issue 이다. 2012년 부터 알려진 이슈이지만 아직 수정 되지 않았다. 짬나면 기여해 봐야 겠다. libquickmail libquickmail curl 을 랩핑 해 둔 라이브러리라고 보면 ..
import logging logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(levelname)s %(message)s') logging.info("test") import logging import time today = time.strftime("%Y%m%d") logger = logging.getLogger('myapp') logdir = "." logpath = logdir + '/logtest2.' + today + '.log' hdlr = logging.FileHandler(logpath) formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s') hdlr.setF..
$ ./mailstats ./mailstats: error while loading shared libraries: libdb-4.2.so: cannot open shared object file: No such file or directory libdb-4.2.so 가 필요 하다고 함. libdb-4.2.so 를 직접 구해다가 복사 하기도 하지만 yum 으로 설치 할 수 있으면 yum 으로 설치 하는 것이 편하다. 어떤 패키지를 설치 해야 되는지 찾아 보려면 yum whatprovides libdb-4.2.so 를 입력하면 어떤 패키지가 필요 한지 알려 준다. $ sudo yum whatprovides libdb-4.2.so Loaded plugins: security, versionlock compa..
1 - usage 2 - mysql error 3 - conscheck? 4 - EOM - out of memory? 5 - EOF - end of file? 6 - illegal table 참고 Where can I find a list of the mysqldump exit codes? Does mysqldump return a status?