Spamassassin이 user_scores_custom_query 규칙을 사용하여 구성 줄을 구문 분석하지 못했습니다.

Spamassassin이 user_scores_custom_query 규칙을 사용하여 구성 줄을 구문 분석하지 못했습니다.

MySQL을 통해 사용자별 spamassassin 구성 파일을 설정하려고 하는데 다음 오류가 발생합니다.

Sep  8 12:09:13.668 [12307] warn: config: failed to parse line, skipping, in "/etc/mail/spamassassin/local.cf": user_scores_custom_query SELECT preference, value FROM _TABLE_ WHERE username = _USERNAME_ OR username = '$GLOBAL' OR username = CONCAT('%',_DOMAIN_) ORDER BY username ASC

하지만 이 구성 줄에 무엇이 잘못되었는지 알 수 없습니다. 누군가 나를 도와줄 수 있습니까?

편집: 여기에 local.cf가 모두 있습니다.

required_hits 5.0
report_safe 0
required_score 5
rewrite_header Subject [SPAM]

user_scores_dsn DBI:mysql:spamassassin:localhost:3306
user_scores_sql_password db_username
user_scores_sql_username db_pass
user_scores_custom_query SELECT preference, value FROM _TABLE_ WHERE username = _USERNAME_ OR username = '$GLOBAL' OR username = CONCAT('%',_DOMAIN_) ORDER BY username ASC

답변1

내가 추론한 문서를 간략히 살펴보면 이것이 이고 user_scores_sql_custom_query가 아닌 것으로 추론됩니다 user_scores_custom_query.

관련 정보