Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Message Filter with Except Condition

  • 1 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: Zenos

more options

I need to write a Filter for incoming emails that automatically moves all the items from a specific sender to a specified folder *except* if a specific word is in the Subject line... in which case I want it to pass the filter and go to the Inbox like a normal piece of email. I have no problem setting up the first part -- Match the following: From contains "X", Move Messages to Folder "Y". But how do I make it say "Except if Z is in the Subject line"?

Thanks!

I need to write a Filter for incoming emails that automatically moves all the items from a specific sender to a specified folder *except* if a specific word is in the Subject line... in which case I want it to pass the filter and go to the Inbox like a normal piece of email. I have no problem setting up the first part -- Match the following: From contains "X", Move Messages to Folder "Y". But how do I make it say "Except if Z is in the Subject line"? Thanks!

선택된 해결법

You could create two filters. The first one detects the sender and the "escape" word and does nothing to the message, just halts processing of filters. The second one then can detect the same sender and do the move. The second one runs only when the first filter hasn't triggered.

I'm not sure if I have understood your logic, but you could try:

match all the following

sender is <sender> subject doesn't contain <escape word>

move message to <folder>

..so messages from this sender with the escape word in the subject line won't be moved.

문맥에 따라 이 답변을 읽어주세요 👍 2

모든 댓글 (1)

more options

선택된 해결법

You could create two filters. The first one detects the sender and the "escape" word and does nothing to the message, just halts processing of filters. The second one then can detect the same sender and do the move. The second one runs only when the first filter hasn't triggered.

I'm not sure if I have understood your logic, but you could try:

match all the following

sender is <sender> subject doesn't contain <escape word>

move message to <folder>

..so messages from this sender with the escape word in the subject line won't be moved.