'시스템, 서버/메일'에 해당되는 글 14건

readwrite.h error
->
vi readwrite.h
------------------------------------------
#ifndef READWRITE_H
#define READWRITE_H

/*
extern int read();
extern int write();
*/

/*
   if install on a 64bit....
*/
#include <unistd.h>

#endif
------------------------------------------

tcpserver: fatal: temporarily unable to figure out IP address for 0.0.0.0: file does not exist
->
touch /etc/dnsrewrite

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail - Maildir make  (0) 2007.05.30
Aack, child crashed  (0) 2007.03.05
qmail 포트 변경  (0) 2007.02.02
qmail 25 접속 에러시 체크사항 1  (0) 2007.02.02
메일 priority 값  (0) 2007.02.02
블로그 이미지

용병

,
/var/qmail/bin/maildirmake $HOME/Maildir

echo ./Maildir/ > $HOME/.qmail

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail on a 64bit  (0) 2007.10.23
Aack, child crashed  (0) 2007.03.05
qmail 포트 변경  (0) 2007.02.02
qmail 25 접속 에러시 체크사항 1  (0) 2007.02.02
메일 priority 값  (0) 2007.02.02
블로그 이미지

용병

,
qmail 설치후 해당 에러 날 경우

qmail-local.c 에서 열심히 찾아본다..

경우의 수
1. Maildir 의 퍼미션?
2. quota 체크시 문제?

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail on a 64bit  (0) 2007.10.23
qmail - Maildir make  (0) 2007.05.30
qmail 포트 변경  (0) 2007.02.02
qmail 25 접속 에러시 체크사항 1  (0) 2007.02.02
메일 priority 값  (0) 2007.02.02
블로그 이미지

용병

,
/var/qmail/supervise/qmail-smtpd/run

25 -> 원하는놈

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail - Maildir make  (0) 2007.05.30
Aack, child crashed  (0) 2007.03.05
qmail 25 접속 에러시 체크사항 1  (0) 2007.02.02
메일 priority 값  (0) 2007.02.02
qmail 수신 용량 제한  (0) 2007.02.02
블로그 이미지

용병

,

vi /var/log/qmail/smtpd/current

아래와 같은 에러 발생시

/var/qmail/bin/qmail-smtpd: error while loading shared libraries:
libcrypto.so.4: failed to map segment from shared object: Cannot allocate memory

vi /var/qmail/supervise/qmail-smtpd/run 확인

'시스템, 서버 > 메일' 카테고리의 다른 글

Aack, child crashed  (0) 2007.03.05
qmail 포트 변경  (0) 2007.02.02
메일 priority 값  (0) 2007.02.02
qmail 수신 용량 제한  (0) 2007.02.02
qmail svc 관련 옵션  (0) 2007.02.02
블로그 이미지

용병

,
1 : 중요
3 : 보통
5 : 낮음

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail 포트 변경  (0) 2007.02.02
qmail 25 접속 에러시 체크사항 1  (0) 2007.02.02
qmail 수신 용량 제한  (0) 2007.02.02
qmail svc 관련 옵션  (0) 2007.02.02
qmail status.new / out of space  (0) 2007.02.02
블로그 이미지

용병

,

/var/qmail/control/databytes

20M 제한

20000000

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail 25 접속 에러시 체크사항 1  (0) 2007.02.02
메일 priority 값  (0) 2007.02.02
qmail svc 관련 옵션  (0) 2007.02.02
qmail status.new / out of space  (0) 2007.02.02
qmail-remote 인터셉트  (0) 2007.02.02
블로그 이미지

용병

,

서비스 중지
svc -d /service/*

서비스 시작
svc -u /service/*

'시스템, 서버 > 메일' 카테고리의 다른 글

메일 priority 값  (0) 2007.02.02
qmail 수신 용량 제한  (0) 2007.02.02
qmail status.new / out of space  (0) 2007.02.02
qmail-remote 인터셉트  (0) 2007.02.02
MailDir 확인  (0) 2007.02.02
블로그 이미지

용병

,
queue 의 갯수 및 용량체크
더이상 생성할 수 없을만큼 쌓였을 경우 에러 발생가능

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail 수신 용량 제한  (0) 2007.02.02
qmail svc 관련 옵션  (0) 2007.02.02
qmail-remote 인터셉트  (0) 2007.02.02
MailDir 확인  (0) 2007.02.02
메일 인증관련 사항  (0) 2007.02.02
블로그 이미지

용병

,
1. qmail-remote 파일을 아래꺼로 만들었습니다.
코드:

#!/usr/bin/perl -w
undef $/;
$inputdata = <STDIN>;
$/ = "\n";

# 로그를 기록한다.
$logfile = "/var/log/qmail-remote.log";
open FH, ">>$logfile";
flock(FH,2);
print FH "$ARGV[0]:$ARGV[1]:$ARGV[2]\n";
close FH;

# 원래 qmail-remote 프로그램을 실행시킨다.
open (MAIL, "| /var/qmail/bin/qmail-remote-org $ARGV[0] $ARGV[1] $ARGV[2]");
print MAIL $inputdata;
close MAIL;


그리고 권한을 아래처럼 주었구요..
코드:

-rwxr-xr-x    1 root     qmail         379 Nov 25 10:51 qmail-remote
-rwx--x--x    1 root     qmail       30516 Nov 25 09:54 qmail-remote-org

제 경우는 qmail-remote.log 파일의 소유자는 qmailr.qmail 이고
권한은 666 입니다.

'시스템, 서버 > 메일' 카테고리의 다른 글

qmail svc 관련 옵션  (0) 2007.02.02
qmail status.new / out of space  (0) 2007.02.02
MailDir 확인  (0) 2007.02.02
메일 인증관련 사항  (0) 2007.02.02
maillog 에 DBERROR: reading /var/lib/imap/db/skipstamp 에러시  (0) 2007.02.02
블로그 이미지

용병

,