We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff72ac9 commit aa6c46dCopy full SHA for aa6c46d
1 file changed
rosetta-test-suites/sendmail.ros
@@ -457,10 +457,23 @@
457
458
(capability 'automatic-mime-detection (list
459
460
+ ; This is difficult to test, as we would need to find the attachment MIME part and check
461
+ ; the MIME type of the attachment.
462
+
463
))
464
465
(capability 'unicode-file-name (list
-
466
467
+ (test "basic single text attachment with unicode file name" (lambda ()
468
+ (sendmail-send-with-attachments
469
+ '(("data" "info.txt")
470
+ ("file-name" "info¡.txt")
471
+ ("content-type" "text/plain")))
472
+ (assert
473
+ (server-message-contains-ci? "utf-8''info%C2%A1.txt")
474
+ (string-append "Expected server to receive a message with an inline attachment, but received: " (server-message-data server)))))
475
476
477
478
479
0 commit comments