repo.or.cz
/
ghsmtp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
If the hostname is unknown, just use the address literal.
[ghsmtp.git]
/
ouroboros.sh
blob
d314806b80a341e7e7dbd29853eb7b0f5f53bd36
1
#!/bin/bash
2
3
log_dir
=/
tmp
/
Maillogs
4
5
mkdir
-p
${log_dir}
6
7
cwd
=
`pwd`
8
9
coproc \
10
ASAN_OPTIONS
=
detect_odr_violation
=
0
\
11
LLVM_PROFILE_FILE
=
${cwd}
/
smtp.profraw \
12
MAILDIR
=/
tmp
/
Maildir \
13
GOOGLE_LOG_DIR
=
${log_dir}
\
14
GLOG_minloglevel
=
0
\
15
.
/
smtp
16
17
ASAN_OPTIONS
=
detect_odr_violation
=
0
\
18
.
/
snd \
19
-service
=
smtp \
20
-pipe
=
true \
21
<&
${COPROC[0]}
>&
${COPROC[1]}