Logging

Based on the verbosity level clapf syslog()s about its operation.

Normally (verbosity=1) clapf logs a single line, eg.

Sep 11 16:16:35 thorium clapf[28688]: 4aaa5bc2e143b68ed701d8833be296: sj@acts.hu got SPAM, 1.000, 2378, relay=127.0.0.1:10026, delay=0.12, delays=0.01/0.01/0.00/0.00/0.00/0.02/0.00/0.04/0.00/0.05, status=250 2.0.0 Ok: queued as 5597A17021

4aaa5bc2e143b68ed701d8833be296 clapf queue identifier
sj@acts.hu recipient address
got SPAM the recipient got a spam email
1.0000 probabilty of the message
2378 message size in bytes
relay=127.0.0.1:10026 next hop
delay=0.12 overall processing time in seconds
delays=0.01/0.01/0.01/0.00/0.00/0.00/0.02/0.00/0.04/0.00/0.05 how much time (in seconds) clapf spent in the various phases
status=250 2.0.0 Ok: queued as 5597A17021 answer of the next hop

The delays=a/b/c/d/e/f/g/h/i/j/k field consists of the following parts

a: lmtp/smtp conversation needed to get the message from the MTA
b: message parsing
c: antivirus scanning
d: query user data
e: query policy settings
f: minefield query
g: statistical check
h: training
i: token update
j: message store
k: smtp conversation with the next hop

verbosity=1 is the recommended setting for normal operation. If you want to debug something set verbosity=5, then killall -HUP clapf to get a deep insight what clapf does under the hood.

Detailed logging

If you set verbosity=5, then clapf emits lots of syslog entries:

The usual postfix stuff:

Apr 22 09:05:53 myhost postfix/smtpd[2574]: connect from 1.2.3.4-dsl.aaa.fu[192.168.11.22]
Apr 22 09:05:53 myhost postfix/smtpd[2574]: 9C02D17022: client=1.2.3.4-dsl.aaa.fu[192.168.11.22]
Apr 22 09:05:53 myhost postfix/cleanup[2577]: 9C02D17022: message-id=<20100422070553.5E458207A63@1.2.3.4-dsl.aaa.fu>
Apr 22 09:05:53 myhost postfix/qmgr[2942]: 9C02D17022: from=<sj@1.2.3.4-dsl.aaa.fu>, size=917, nrcpt=1 (queue active)
Apr 22 09:05:53 myhost postfix/smtpd[2574]: disconnect from 1.2.3.4-dsl.aaa.fu[192.168.11.22]

Ok, clapf starts with a fork():

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: fork()
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent: 220 av-engine.localhost LMTP^M 
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: LHLO mail.aaaa.fu
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent: 250-av-engine.localhost^M 250-PIPELINING^M 
250-SIZE^M 250-8BITMIME^M 250 XFORWARD NAME ADDR PROTO HELO^M
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: XFORWARD NAME=1.2.3.4-dsl.aaa.fu ADDR=192.168.11.22

If you have zombie protection enabled and postfix sends the XFORWARD data:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: zombie check: - [15] NAME=1.2.3.4-dsl.aaa.fu 
ADDR=192.168.11.22 in 45 us
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: client address: 192.168.11.22
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: XFORWARD PROTO=ESMTP HELO=1.2.3.4-dsl.aaa.fu

Go on with the SMTP conversation:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: MAIL FROM:<sj@1.2.3.4-dsl.aaa.fu> SIZE=917
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: RCPT TO:<sj@acts.hu>
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: DATA
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent: 250 Ok^M 250 Ok^M 250 Ok^M 250 Ok^M 354 Send 
mail data; end it with <CRLF>.<CRLF>^M 
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: period: *QUIT^M *

Got the period (.) command, so clapf can process the email

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: (.)

Let's pass it the the antivirus scanner, it seems that it's clear

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: trying to pass to CLAMD
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: CLAMD CMD: SCAN /var/spool/clapf
/tmp/4bcff551fafb8fa422be146cf03dae^M 
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: CLAMD DEBUG: 56 /var/spool/clapf
/tmp/4bcff551fafb8fa422be146cf03dae: OK

Let's deal with the first recipient:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: round 0 in injection

If you have memcached support, it tries to query the user data and the policy settings:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: memcached user query=_c:sj@acts.hu, 
data=1000:sj:acts.hu:1 (17)
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: memcached parsed user data: uid: 1000, name: sj, 
domain: acts.hu, policy group: 1
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: memcached policy query=_c:1, data=0:1:1: 
:1:65535:::0.9200:1.0100:1:5:1:1:1:1:1:0:1:0:0 (53)
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: memcached parsed policy data: spam limit: 0.9200, 
oblivion: 1.0100, subject prefix: * *, rbl: **, training mode: 1, meta: 1

If you have whitelist enabled:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sql: SELECT whitelist FROM t_white_list WHERE uid=0 OR
 uid=1000
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: whitelist: @partners.zzz.com$^M no-reply@xxxx.com$
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: matching @partners.zzz.com$ on sj@1.2.3.4-dsl.aaa.fu
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: matching no-reply@xxxx.com$ on sj@1.2.3.4-dsl.aaa.fu

Let's do the Bayesian spam check:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: running Bayesian test

then update the timestamp of the tokens (unless update_tokens=0)

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: updated 24/34 tokens

Save the email to the user's queue directory (if you have compiled clapf with --with-store=…)

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: saving to queue: /var/lib/clapf/queue/acts.hu
/s/sj/h.4bcff551fafb8fa422be146cf03dae

Ok, we are ready to pass the email back to postfix (to 127.0.0.1:10026/tcp):

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: trying to inject back
Apr 22 09:05:53 myhost postfix/smtpd[2583]: connect from localhost[127.0.0.1]
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got in injecting: 220 mail.aaaa.fu ESMTP Don't spam
 or die^M 
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent in injecting: EHLO av-engine.localhost^M 
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got in injecting: 250-mail.aaaa.fu^M 250-PIPELINING^M 
250-SIZE 15000000^M 250-ETRN^M 250-XFORWARD NAME ADDR PROTO HELO SOURCE^M 250-ENHANCEDSTATUSCODES^M 250-8BITMIME^M 250 DSN^M 
Apr 22 09:05:53 myhost postfix/smtpd[2583]: A468D14022: client=1.2.3.4-dsl.aaa.fu[192.168.11.22]
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent in injecting: XFORWARD NAME=1.2.3.4-dsl.aaa.fu 
ADDR=192.168.11.22^M XFORWARD PROTO=ESMTP HELO=1.2.3.4-dsl.aaa.fu^M MAIL FROM:<sj@1.2.3.4-dsl.aaa.fu> SIZE=917^M RCPT
 TO:<sj@acts.hu>^M DATA^M 
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got in injecting: 250 2.0.0 Ok^M 250 2.0.0 Ok^M 250 
2.1.0 Ok^M 250 2.1.5 Ok^M 354 End data with <CR><LF>.<CR><LF>^M 
Apr 22 09:05:53 myhost postfix/cleanup[2577]: A468D14022: message-id=<20100422070553.5E458207A63@1.2.3.4-dsl.aaa.fu>
Apr 22 09:05:53 myhost postfix/qmgr[2942]: A468D14022: from=<sj@1.2.3.4-dsl.aaa.fu>, size=1122, nrcpt=1 (queue active)
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got in injecting: 250 2.0.0 Ok: queued as A468D14022^M 
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent in injecting: QUIT

We are done with injecting, let's pass a response to the ”.” command back to the first postfix instance:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent: 250 Ok 4bcff551fafb8fa422be146cf03dae <sj@acts.hu>^M 

Syslog some clapf statistics:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sj@acts.hu got HAM, 0.0653, 920,  relay=127.0.0.1:10026,
delay=0.07, delays=0.00/0.00/0.00/0.00/0.00/0.00/0.00/0.00/0.01/0.00/0.05, status=250 2.0.0 Ok: queued as A468D14022

Finish the L/SMTP conversation with the first postfix instance:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: got: QUIT
Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: sent: 221 av-engine.localhost Goodbye^M 

Log the fact that clapf has removed the file from its own ../tmp directory:

Apr 22 09:05:53 myhost clapf[2579]: 4bcff551fafb8fa422be146cf03dae: removed

The first postfix instance also has some info to syslog:

Apr 22 09:05:53 myhost postfix/lmtp[2578]: 9C02D17022: to=<sj@acts.hu>, relay=127.0.0.1[127.0.0.1]:10025, delay=0.08, 
delays=0.01/0/0.01/0.07, dsn=2.0.0, status=sent (250 Ok 4bcff551fafb8fa422be146cf03dae <sj@acts.hu>)

The fork()'ed clapf process has finished, time to say goodbye:

Apr 22 09:05:53 myhost clapf[2579]: child has finished
Apr 22 09:05:53 myhost clapf[2579]: processed 1 messages

The second postfix instance syslog()'s, too:

Apr 22 09:05:53 myhost postfix/qmgr[2942]: 9C02D17022: removed
Apr 22 09:05:53 myhost postfix/smtpd[2583]: disconnect from localhost[127.0.0.1]
Apr 22 09:05:53 myhost postfix/local[2584]: A468D14022: to=<sj@mail.aaaa.fu>, orig_to=<sj@acts.hu>, relay=local, 
delay=0.08, delays=0.04/0.01/0/0.03, dsn=2.0.0, status=sent (delivered to command: /usr/local/bin/maildrop)
Apr 22 09:05:53 myhost postfix/qmgr[2942]: A468D14022: removed

hirlevel@rothermetal.hu robi@rothermetal.hu ajandekkaracsonyra@medtron.hu dms@medtron.hu lipot.andrea@string.hu string@string.hu bearlock@bearlock.hu info@bestlogistics.hu bestoffice@citromail.hu oncz.illes@actel.hu kosakft@kosakft.hu loginadmin@wtcd.eu wtcd@wtcd.eu info@zebrasoftev.hu szalon@chevroletgyulai.hu ckdelta@iol.sk siklosi.zoltan@autogrid.hu info@mosolypontok.hu info@hykomm.hu info@eGlobalSurveys.com eurolock@t-online.hu info-hu@computerlinks.hu tavam@tavam.hu hotelinfo@haromsarkany.hu info@implantatum.hu nevess@nevetosok.hu info@usznp.hu tag@usznp.hu helyielnok@usznp.hu taginfo@usznp.hu adomany@usznp.hu korrupcio@usznp.hu partner@usznp.hu pszota@peugeotfabian.hu flotta@peugeotfabian.hu info@fabianbudaors.hu info@peugeotfabian.hu ertekesites@peugeotfabian.hu vevoszolgalat@peugeotfabian.hu alkatresz@peugeotfabian.hu hasznaltauto@peugeotfabian.hu varga@peugeotfabian.hu biroandras@peugeotfabian.hu biztositas@peugeotfabian.hu alkatresz@peugeotfabian.hu pappz@peugeotfabian.hu ertekesites@peugeotfabian.hu galambos@peugeotfabian.hu info@tintakiado.hu info@szakemberlista.hu dora.durjanc@dft-hungaria.hu szabo.judit@vasar.info info@csicsergo.hu info@vamdesign.hu info@civilmozgalom.hu uveges.szilvia@operagardenhotel.hu g.faska@operagardenhotel.hu sales@operagardenhotel.hu operagarden@operagardenhotel.hu sprinter@sprinterkiado.hu info@csicsergo.hu iwiw@civilmozgalom.hu ruzsicsm@csicsergo.hu hejja@csicsergo.hu seres@seresmaria.hu cmiroda@gmail.com civilmozgalom@gmail.com civilek@civilmozgalom.hu hibajelzesek@gmail.com kovari.erika@sprintmotorsport.com info@sprintmotorsport.com horvath.lazar@sprintmotorsport.com stiefel@stiefel.hu nagyker@stiefel.hu iskola@stiefel.hu ceges@stiefel.hu grafika@stiefel.hu grafika@stiefel.hu mintabolt@stiefel.hu info@natureshade.hu akcio@ssi-schaefer.hu info@ssi-schaefer.hu info@siodigit.hu sales@moziakertben.hu info@tunderkertkiado.hu diana.balogh@tunderkertkiado.hu ugyfelszolgalat@tunderkertkiado.hu info@netadmin.hu marketing@netadmin.hu helpdesk@netadmin.hu 7even@7even.hu regdony.jozsef@7even.hu 7even@affero.hu papp.csaba@7even.hu info@gumipark.hu marketing@ajandekozz.hu ugyfelszolgalat@maxxoutlet.hu info@ugyfelszolgalat@maxxoutlet.hu trainex@trainex.hu info@trainex.hu kcswolf@freemail.hu info@boldogjovo.eu nyomda@sprinternyomda.hu iroda@sprinternyomda.hu kepviselet@civilmozgalom.hu info@bidstorm.eu havancsak@havancsak.hu laszlo.havancsak@havancsak.hu aniko@havancsak.hu hirlevel@havancsak.hu hambek@havancsak.hu diadvd@diadvd.hu ugyvezeto@gyalog-h.hu info@fiszmedia.hu info@sabanorm.hu szfvar@sabanorm.hu bp@sabanorm.hu fodor.geza@yokozuna.hu info@yokozuna.hu ugyfelszolgalat@edmax.hu info@kazanwebaruhaz.hu info@klimawebaruhaz.hu info@dolphio.hu hr@dolphio.hu gasztonyi.peter@dolphio.hu support@news.dolphio.hu info@khf.hu info@cid.hu kozponti@ceg-info.hu info@1gomboc.hu info@magicice.hu marketing@magicice.hu eszekid@epitoforum.hu mek@epitoforum.hu szalaip@epitoforum.hu ferovicsz@epitoforum.hu dancsod@epitoforum.hu epkontroll@gmail.com info@brandshop24.hu pipoly@kizmantravel.com office@tanacsos.hu koveteles@tanacsos.hu edmbudapest@yahoo.com igazgyongy@dravanet.hu bathori@bathori.hu kincskereso@geniuszegyuttes.hu mesterember2010@gmail.com lykosmelas@gmail.com pongraczgabor@t-online.hu hello@marketingcommando.hu info@spp.hu info@lapszemle.hu register@re-search.hu info@re-search.hu info@uzletitervek.hu info@plutoreklam.hu plutoreklam@plutoreklam.hu leskovicspiro@t-online.hu tuzijatek-varazs@tuzijatek-varazs.hu ertekesites@crevo.hu info@crevocorp.hu gero.daniel@crevo.hu bonyar.miklos@crevo.hu support@crevo.hu tanacs.gabriella@crevo.hu gyartas@crevo.hu ksv@ksv.hu ugyfelszolgalat@ksv.hu voros.szilvia@ksv.hu balazs.eszter@ksv.hu info@forpsi.hu emailleiratkozas@freemail.hu domain@forpsi.hu admin@forpsi.hu szamlazas@forpsi.hu claim@forpsi.hu info@diamondtopconsult.hu berecz@diamondtopconsult.hu morocz@diamondtopconsult.hu den@opinionleaders.hu info@hirmedia.hu info@infosierra.hu tollasroland@gmail.com klimaklub@klimaklub.hu servian@t-online.hu fazekas.laszlo@borturak.hu info@borturak.hu simon.ariann@borturak.hu info@kftmarketing.hu marketing@hunguest-fenyo.ro fenyo@hr.astral.ro reserve@hunguest-fenyo.ro info@kolyokangol.hu hnemeth.viktoria@gmail.com katalin.welker@samling.hu balazs.sutka@samling.hu nora.sandor@samling.hu stella.erenyi@samling.hu peter.szabo@samling.hu katalin.kormos@samling.hu eva.sandor@samling.hu vera.tuba@samling.hu info@samling.hu info@neosoft.hu karasz.balazs@neosoft.hu bernadett@neosoft.hu viktor@neosoft.hu hirlevel@samling.hu info@kockazatertekeles.info munkavedelem@kockazatertekeles.info hepplaszlo@mediatime.hu hiba@szexpartnerem.net adooptimalizalas2010@gmail.com tollrol@vipmail.hu profitkommando@freemail.hu info@yourlife2000.hu info@mall.hu replyhu@nrholding.com info@konyvnet.hu konyvnetrendeles@gmail.com konyvnet.hu@gmail.com mail@fitmail.hu wellonline.hu@gmail.com info@lightmedia.hu kortvelyesi@t-online.hu info@i-business.hu director@caramell.hu titkarsag@caramell.hu salesdirector@caramell.hu marketing@caramell.hu info@caramell.hu info@elonyelvek.hu info@toeflibt.hu elonyelv@t-online.hu dmleiratkozas@freemail.hu uzemeltetes@evisual.eu elonyelvek@yahoo.com info@honlapteszt.hu hello@verdesjanos.hu info@zug.hu szerkesztoseg@zug.hu rolesz.tollaroand@citromail.hu info@jampub.hu informacio@cegnezo.hu ugyvezeto@cegnezo.hu marketing@cegnezo.hu jog@cegnezo.hu ertekesites@cegnezo.hu rendszerfejlesztes@cegnezo.hu tech@cegnezo.hu webmester@cegnezo.hu info@cegnezo.hu info@zarrud.hu henczi@enternet.hu henczi@mnyomozo.hu office@sport-gala.hu rendezvenyszervezes@sport-gala.hu hegyi@sport-gala.hu ferenczi.gabor@diotimail.com hirdetes@pont24.hu info@pont24.hu informacio@pont24.hu ugyfelszolgalat@alkupiac.hu ugyfelszolgalat@ingatlan24.com mail@holisztikusszalloda.hu bukfurdorally2010@gmail.com reklammegoldasok2011@gmail.com admin@marketingexpressz.hu ugyfelszolgalat@marketingexpressz.hu info@performia.hu informacio@netkozvetito.hu webszerk@pafi.hu szerklist@pafi.hu informacio@hitelzona.hu ugyfelszolgalat@hitelzona.com ugyfelszolgalat@szabadeuropa.com info@szabadeuropa.com info@nmsnet.hu valasz@nmsnet.hu info@horizonttitletrust.com megrendel@civilhirlap.hu civilhir.szerkesztoseg@gmail.com ugyfelszolgalat@netkozvetito.hu info@webrandi.hu czehmeiszter.j@gmail.com info@csillagvarazslo.hu leiratkoz.relaxa@t-online.hu relaxa.titkarsag@t-online.hu info@ingyenhivo.hu pfarago@skawa.hu info@skawa.hu info@tozsdeeloadasok.hu info@innoiq.hu support@innoiq.hu info@elemzeskozpont.hu info@civilhirlap.hu kerdes@gyorspenzonline.com ceginfonet@ceginfonet.hu info@ceginfobudapest.hu info@siofoknights.hu siofoknights@gmail.com tivadar.aron@arindex.hu info@arindex.hu feketem@arindex.hu zsoszeg@gmail.com info@hirlevelmegoldas.hu noreply@hitel.co.hu info@hitel.co.hu szombathely@hitel.co.hu horvath.beatrix@hitel.co.hu info@ingatlan1.hu hirdetes@ingatlan1.hu info@pannontoner.hu orsolya.rak@migaltranslations.com iroda@migal.hu ugyfelszolgalat@hitelek24.hu info@autocentrumszabo.hu info@fiatszabo.hu info@renaultszabo.hu info@fordszabo.hu info@catconsulting.hu info@zseron.com magabiztosanangolul@gmail.com csaba.schreiber@gmail.com schreibercsaba.angoltanar@gmail.com gyuratzkft@gmail.hu gyuratz@chello.hu gyuratz@upcmail.hu hirlevel@otthonteremto.hu info@otthonteremto.hu hu@migaltranslations.com info@neuronline.net iroda@kifogyott.hu error@blackservice.hu ajanlat@nyomda-nyomda.hu arajanlat@nyomda-nyomda.hu info@geonet.hu info@work24.hu bergerkonyvelo@gmail.com ingyen-konyveles@ingyen-konyveles.hu info@webmediainfo.hu hello@veddolcson.hu apongi77@gmail.com info@e-designer.hu gpek@visionext.hu gpek@gpek.hu szerkesztoseg@liferecycle.hu info@fxbulls.hu info@komarnoinyomda.hu sara.balazs@stability.hu info@mitegyek.eu info@zvk.hu office@fulldomain.hu gifton@gifton.hu pendrive_betakaritas@gifton.hu info@galoppfutar.com info@olinera.hu info@traveloutlet.hu mail@traveloutlet.hu info@mobil-homes.hu info@weblapkeszites.org.hu info@driveinstore.hu litomedia@gmail.com k.litomedia@upcmail.hu info@lineelectronic.hu ugyfelszolg@lineelectronic.hu polus@lineelectronic.hu mammut@lineelectronic.hu helpdesk@lineelectronic.hu ajanlatkeres@lineelectronic.hu csalami.janos@lineelectronic.hu hungexpo@hungexpo.hu info@hungexpo.hu pakozdi.jozsef1@hungexpo.hu sprinternyomda.kartyanaptar@happycard.hu tomibohoc@upcmail.hu varionett@upcmail.hu andrejszki.tamas@upcmail.hu info@orvoshop.hu e-dm@orvoshop.hu ranc-stop@ranc-stop.hu info@ekszershop.eu ekszershop@velvet.hu info.hu@calivary.com info@myskins.hu info@vilagszam.hu autoprofi@autoprofikft.hu karg@kargauto.hu office@mobiltelefonelado.hu will.krisztian@mobiltelefonelado.hu info@mobiltelefonelado.hu info@sztarportre.hu info@cegwebtar.hu info@havasweb.hu megrendel@zoldujsag.hu info@zoldujsag.hu zoldujsag@zoldujsag.hu andrea.farkas@servian.hu info@servian.hu hirlevel@servian.hu sprinternyomda.kartyanaptar@happycard.hu info@armada.hu parallel@parallel.hu hirlevel@bormesterek.hu cashback@mosaic.co.hu info@mosaic.co.hu konyv.ba@gmail.com info@businessmails.info bosszicica@gmail.com kapcsolat@sajatnaptar2012.com kapcsolat@mypet.hu info@e-designer.hu noreply@sajatnaptar2012.com richpoinews@gmail.com hirlevel@canonshop.hu info@canonshop.hu llumar@thomyfolia.hu info@jazzypub.hu hirlevel@jazzy.hu csaba.mezei@lightmedia.hu info@lightmedia.hu jurinovics@gmail.com mail@sikereskarterites.com info@jovotervezes.hu info@minibolt.hu info@ingyenhonlapkeszites.info webaruhazkeszites2@profiknak.info webaruhazkeszites@profiknak.info info@profiknak.info info@kupongroup.hu info@szepseg-egeszsegkozpont.hu support@earnsocialeasy.com info@earnsocialeasy.com rp@navipro.hu info@gpsreklam.hu ugyfelszolg@gpsreklam.hu marketing@gpsreklam.hu ertekesites@gpsreklam.hu penzugy@gpsreklam.hu info@egikamera.hu nyomda@kimsen.hu modositas@szerszambirodalom.hu info@szerszambirodalom.hu szerviz@szerszambirodalom.hu szerszam@szerszambirodalom.hu mtz@szerszambirodalom.hu kerteszet@szerszambirodalom.hu viztisztitok@szerszambirodalom.hu info@szerszambirodalom.hu info@energiaszolgaltatok.hu ugyfelszolg@globalfaktor.hu ertekesites@klimaklub.hu info@vizmegoldas.hu dmcentrum@yahoo.com info@gronlandklima.hu bounce@gronlandklima.hu kapcsolat@onlinelevel.hu info2@heted7nyelven.hu info@heted7nyelven.hu iroda.presentgroup@gmail.com contact@akcioswellness.com andrea.farkas@granatalma.eu andrea.farkas@granatalma.hu webkozmetikus@t-online.hu gyongyip@t-online.hu info@quantumresearch.hu viktor.posa@quantumresearch.hu r.mitko62@gmail.com sales@7eveninstant.com info@kenlas.hu mosterdemese@ixor.hu mosterdemes@ixor.hu info@mosterdemes.hu kapcsolat@mosterdemes.hu partner@mosterdemes.hu job@7even.hu klausz.beata@7even.hu contact@akciosakcio.com info@cwds.hu info@vendeglatoshop.hu ugyfelszolgalat@clubkaros.hu foglalas@clubkaros.hu info@clubkaros.hu sales@karos-spa.hu marketing@karos-spa.hu iroda@nginnova.hu hirdetes@nginnova.hu hiba@nginnova.hu nginnova@gmail.com info@greenfuel.hu info@solvitzrt.com andras.szilagyi@co3app.com tunde.magyar@co3app.com tamas.gal@co3app.com peter.flamich@co3app.com support@co3app.com feri@kokinyomda.hu grafika@kokinyomda.hu nyomda@kokinyomda.hu sokshop1@gmail.com info@bonitermalpanzio.hu ugyfelszolgalat@onlinemarketing247.hu info@onlinemarketing247.hu

© 2008-2012 SPAMtelenül. All rights reserved.  |  Feedback: sj@acts.hu  (public key) Atlassian JIRA