imap-download: find returns absolute filenames; fix pathing for rm
This commit is contained in:
parent
2235764ea6
commit
d65701051f
1 changed files with 2 additions and 2 deletions
|
@ -98,13 +98,13 @@ do_attachments() {
|
|||
# Unpack the attachments
|
||||
munpack -C "${temp_dir}" "${filename}";
|
||||
# Delete the original email file and any description files
|
||||
rm "${temp_dir}/${filename}";
|
||||
rm "${temp_dir}/$(basename "${filename}")";
|
||||
find "${temp_dir}" -iname '*.desc' -delete;
|
||||
|
||||
# Move the attachment files to the output directory
|
||||
while read -r attachment; do
|
||||
log_msg "Extracted attachment ${attachment}";
|
||||
chmod 0775 "${temp_dir}/${attachment}";
|
||||
chmod 0775 "${attachment}";
|
||||
move_attachment "${attachment}";
|
||||
done < <(find "${temp_dir}" -type f);
|
||||
done < <(find "${dir_newmail}" -type f);
|
||||
|
|
Loading…
Reference in a new issue