MUA를 사용하려고 합니다.많은nottoomuch-addresses.sh
아래 설명된 대로 스크립트를 사용하여 주소를 자동 완성합니다.http://alot.readthedocs.org/en/latest/configuration/contacts_completion.html
[[[abook]]]
type = shellcommand
command = nottoomuch-addresses.sh
regexp = \"(?P<name>.+)\"\s*<(?P<email>.*.+?@.+?)>
ignorecase = True
많은 범위에서 자동 완성을 시도하면 다음과 같은 오류 메시지가 나타납니다.
completition error: abook command "nottoomuch-addresses.sh" returned with return code 2
쉘 명령어가 아닌 그냥 스크립트이기 때문에 스크립트에 전체 PATH를 주고, 여러 구성 폴더로 스크립트를 옮겨보아도 해보았지만 문제는 여전합니다.
그래서 무엇을 해야할지 궁금합니다.
답변1
이것은 나에게 효과적입니다.
[[[abook]]]
type = shellcommand
command = nottoomuch-addresses.sh
regexp = '"(?P<name>.+?)" <(?P<email>.+?)>'
ignorecase = True