I'm still not entirely sure I understand. To be frank, there's a language barrier. It might help to pose your question in both English and your native language.
But let's see if any of these ideas help.
First, you can disable spamassassin entirely and optionally go back to relying on just MTA-level RBL checks, which reject mail outright instead of sorting them. (Servers > Services; Global Settings > MTA.)
Second if you want to disable spam checks for just some of your domains on zimbra, you can probably use the @spam_lovers_maps variable, which is in the amavisd.conf.in file, just commented out. See Bypass amavisd-new scanning HOWTO (you can search Google for other discussion of @spam_lovers_maps usage).
Finally if you want to have domain-wide but not zimbra-wide whitelists, you can probably use one of the commented-out per-recipient personal tables and change the recipient to a wildcard or substring. Thus Code:
# ## per-recipient personal tables (NOTE: positive: black, negative: white)
# 'user1@example.com' => [{'bla-mobile.press@example.com' => 10.0}], becomes Code:
# ## per-recipient personal tables (NOTE: positive: black, negative: white)
'.@recipient_domain' => [{'sender_domain1' => -10.0
'sender_domain2' => -10.0}], (using a wildcard) or maybe Code:
# ## per-recipient personal tables (NOTE: positive: black, negative: white)
'@recipient_domain' => [{'sender_domain' => -10.0
'sender_domain2' => -10.0}], (using just a substring).