Displaying 17 results from an estimated 17 matches for "daemon_nam".
Did you mean:
daemon_name
2013 Feb 01
3
[PATCH 0/2] A few Arch Linux specific changes
I''m attaching a few changes that are specific to Arch Linux and are motivated
by our recent switch to systemd.
System V init scripts are no longer used/supported on Arch Linux and,
therefore, the Arch Linux init scripts can be removed from Shorewall.
The two patches that follow are based against master; if it''s possible to
apply them to the upcoming Shorewall 4.5.13 as well,
2019 Oct 13
0
After upgrading samba 4.5.10 to 4.9.13
...however,
> # tweak the behaviour of a samba4-controlled smbd by modifying your
> '/etc/samba/smb.conf' file
> # accordingly.
> daemon_list="samba4"
>
> #----------------------------------------------------------------------------
>
> # Daemons calls: <daemon_name>_<command_option>
> #----------------------------------------------------------------------------
>
> my_service_name="samba"
> my_service_PRE="unset TMP TMPDIR"
> my_service_POST=""
>
> #-------------------------------------------------...
2008 Mar 04
1
Rejecting spam
...ter-grelist in the past to give temporary fail messages.
Following is my sendmail.m4 directive for spamass-milter:
INPUT_MAIL_FILTER(`spamassassin',
`S=unix:/var/run/spamass-milter/spamass-milter.sock, F=,
T=C:15m;S:4m;R:4m;E:10m')dnl
define(`confMILTER_MACROS_CONNECT',`t, b, j, _, {daemon_name},
{if_name}, {if_addr}')dnl
define(`confMILTER_MACROS_HELO',`s, {tls_version}, {cipher},
{cipher_bits}, {cert_subject}, {cert_issuer}')dnl
2004 Aug 06
4
REQ: Parent Id
Before the official release of icecast2 1.0 (non beta) i would like to see
pid file management,
ive discussed this before on how to capture the pid, but ended up with alot
of bash rigamaroo that mounted to even more
headaches.
omething in the config file like
<pid>/path/to/icecast.pid</pid>
I would be willing to donate some bandwidth to xiph, to aleaviate this issue
that causes sever
2019 Mar 28
2
dovecot mailing list stopped delivering mail
...stfix/smtpd[66648]: report connect to all milters
Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup: "j"
Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup: result
"genome.ku.dk"
Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup:
"{daemon_name}"
Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup: result
"genome.ku.dk"
Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup:
"{daemon_addr}"
Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup: result
"192.168.3.112"
Ma...
2019 Oct 13
4
After upgrading samba 4.5.10 to 4.9.13
Good time!
After upgrading samba 4.5.10 to 4.9.13, name resolution in AD hangs.
# /etc/init.d/samba status
?* status: crashed
But the domain itself works, but hangs when resolving user names.
What can be done?
[2019/10/13 12:24:52.896473, 10, pid=17379, effective(0, 0), real(0, 0),
class=ldb] ../lib/ldb-samba/ldb_wrap.c:77(ldb_wrap_debug)
? ldb: Added timed event
2004 Aug 06
4
REQ: Parent Id
...and Michael Erdely (from tech@openbsd.org)
> #
> _pidof()
> {
> ps -acxo pid,ppid,command | \
> awk "\$3==\"$1\" && \$2==\"1\" {print \$1}"
> }
>
> if [ $# -ne 1 ] ; then
> cat << _EOF
> Usage: $0 <daemon_name>
>
> $0 displays the PID of a process,
> if its parent PID is 1.
>
> $0 exits with the return code 0
> if there is a PID to report,
> otherwise the return code is 1.
> _EOF
> exit 0
> fi
>
> _PID="`_pidof $1`"
> test ${_PID} && ec...
2019 Mar 28
0
dovecot mailing list stopped delivering mail
...ort connect to all milters
> Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup: "j"
> Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup:
> result "genome.ku.dk"
> Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup:
> "{daemon_name}"
> Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup:
> result "genome.ku.dk"
> Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup:
> "{daemon_addr}"
> Mar 28 10:57:42 dna01 postfix/smtpd[66648]: milter_macro_lookup:
> result &...
2004 Aug 06
0
REQ: Parent Id
.../sh
# pidof() code by Christoph Moench-Tegeder
# and Michael Erdely (from tech@openbsd.org)
#
_pidof()
{
ps -acxo pid,ppid,command | \
awk "\$3==\"$1\" && \$2==\"1\" {print \$1}"
}
if [ $# -ne 1 ] ; then
cat << _EOF
Usage: $0 <daemon_name>
$0 displays the PID of a process,
if its parent PID is 1.
$0 exits with the return code 0
if there is a PID to report,
otherwise the return code is 1.
_EOF
exit 0
fi
_PID="`_pidof $1`"
test ${_PID} && echo "${_PID}" || exit 1
exit 0
--- snap ---
In order...
2004 Aug 06
0
REQ: Parent Id
...gt; #
> > _pidof()
> > {
> > ps -acxo pid,ppid,command | \
> > awk "\$3==\"$1\" && \$2==\"1\" {print \$1}"
> > }
> >
> > if [ $# -ne 1 ] ; then
> > cat << _EOF
> > Usage: $0 <daemon_name>
> >
> > $0 displays the PID of a process,
> > if its parent PID is 1.
> >
> > $0 exits with the return code 0
> > if there is a PID to report,
> > otherwise the return code is 1.
> > _EOF
> > exit 0
> > fi
> >
> >...
2009 Dec 02
2
Can't receive mail from outside
...header_recipient
masquerade_domains = $mydomain
masquerade_exceptions =
max_idle = 100s
max_use = 100
maximal_backoff_time = 4000s
maximal_queue_lifetime = 5d
message_reject_characters =
message_size_limit = 10240000
message_strip_characters =
milter_command_timeout = 30s
milter_connect_macros = j {daemon_name} v
milter_connect_timeout = 30s
milter_content_timeout = 300s
milter_data_macros = i
milter_default_action = tempfail
milter_end_of_data_macros = i
milter_helo_macros = {tls_version} {cipher} {cipher_bits} {cert_subject}
{cert_issuer}
milter_macro_daemon_name = $myhostname
milter_macro_v = $mail_...
2013 Mar 14
8
Question regarding Postfix and Dovecot
...15316]: report connect to all
milters
Mar 13 20:23:55 andromeda postfix/smtpd[15316]: milter_macro_lookup: "j"
Mar 13 20:23:55 andromeda postfix/smtpd[15316]: milter_macro_lookup: result
"andromeda.home"
Mar 13 20:23:55 andromeda postfix/smtpd[15316]: milter_macro_lookup:
"{daemon_name}"
Mar 13 20:23:55 andromeda postfix/smtpd[15316]: milter_macro_lookup: result
"andromeda.home"
Mar 13 20:23:55 andromeda postfix/smtpd[15316]: milter_macro_lookup: "v"
Mar 13 20:23:55 andromeda postfix/smtpd[15316]: milter_macro_lookup: result
"Postfix 2.9.6"
Mar...
2005 Jun 27
5
sendmail and spamassassin
I have a problem getting spamd and sendmail (both stock CentOS4 rpms)
to work together on a couple of smtp relay machines. This is clearly
a configuration issue and no doubt revolves around my lack of
comprehension of how this is to work.
Basically, the setup consists of two frontend public smtp transports
that redirect all email through a firewall to an internal imap server
for final
2006 Oct 25
11
spam control
Gents,
I have added the following to /etc/mail/sendmail.mc and rebuilt it
trying to control spam. I still get about 25 spam messages a day.
Is there something else that can help control spam?
Thanks
jerry
---------------------------
dnl #
dnl # dnsbl - DNS based Blackhole List/Black List/Rejection list
dnl # See http://www.sendmail.org/m4/features.html#dnsbl
dnl #
FEATURE(`dnsbl',
2015 Jan 23
2
sieve filter not working
HI,
> You could set
>
> syslog_facility = local5
>
> and have all the log messages in the messages file.
According to the output of command
# doveadm log find
every type of message goes to the file I was looking at, "/var/spool/maillog".
>> So, is it postfix doing the local mail delivery, not dovecot?
>>
> To answer this question please post relevant
2014 Jun 13
2
Dovecot and Postfix - dovecot doesn't create sockets
...erade_domains =
masquerade_exceptions = root
master_service_disable =
max_idle = 100s
max_use = 100
maximal_backoff_time = 4000s
maximal_queue_lifetime = 5d
message_reject_characters =
message_size_limit = 2000000
message_strip_characters = \0
milter_command_timeout = 30s
milter_connect_macros = j {daemon_name} v
milter_connect_timeout = 30s
milter_content_timeout = 300s
milter_data_macros = i
milter_default_action = tempfail
milter_end_of_data_macros = i
milter_end_of_header_macros = i
milter_header_checks =
milter_helo_macros = {tls_version} {cipher} {cipher_bits} {cert_subject}
{cert_issuer}
milter_...
2014 Nov 16
1
UNIX perms appear ok (ACL/MAC wrong?)
...ecipient
masquerade_domains =
masquerade_exceptions =
master_service_disable =
max_idle = 100s
max_use = 100
maximal_backoff_time = 4000s
maximal_queue_lifetime = 5d
message_reject_characters =
message_size_limit = 0
message_strip_characters =
milter_command_timeout = 30s
milter_connect_macros = j {daemon_name} v
milter_connect_timeout = 30s
milter_content_timeout = 300s
milter_data_macros = i
milter_default_action = tempfail
milter_end_of_data_macros = i
milter_end_of_header_macros = i
milter_header_checks =
milter_helo_macros = {tls_version} {cipher} {cipher_bits} {cert_subject}
{cert_issuer}
milter_m...