1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
|
:orphan:
.. _imap-rfc-support:
============================
RFCs Supported by Cyrus IMAP
============================
The following is an inventory of RFCs supported by Cyrus IMAP.
:rfc:`822`
Standard for the format of ARPA Internet text messages, obsoleted by
:rfc:`2822`.
:rfc:`0977`
Network News Transfer Protocol
:rfc:`1036`
Standard for interchange of USENET messages
:rfc:`1176`
Interactive Mail Access Protocol: Version 2
:rfc:`1342`
Representation of Non-ASCII Text in Internet Message Headers
:rfc:`1652`
SMTP Service Extension for 8bit-MIMEtransport
:rfc:`1730`
Internet Message Access Protocol - version 4, obsoleted by
:rfc:`2060`, :rfc:`2061`, :rfc:`3501`.
:rfc:`1869`
SMTP Service Extensions
:rfc:`1870`
SMTP Service Extension for Message Size Declaration
:rfc:`1939`
Post Office Protocol - Version 3 (POP3)
:rfc:`1951`
DEFLATE Compressed Data Format Specification version 1.3
:rfc:`1952`
GZIP file format specification version 4.3
:rfc:`2033`
Local Mail Transfer Protocol
:rfc:`2034`
SMTP Service Extension for Returning Enhanced Error Codes
:rfc:`2045`
Multipurpose Internet Mail Extensions (MIME) Part One: Format of
Internet Message Bodies
:rfc:`2046`
Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types
:rfc:`2047`
MIME (Multipurpose Internet Mail Extensions) Part Three: Message
Header Extensions for Non-ASCII Text
:rfc:`2060`
Internet Message Access Protocol - Version 4rev1, obsoleted by
:rfc:`3501`.
:rfc:`2086`
IMAP4 ACL Extension, obsoleted by :rfc:`4314`.
.. NOTE::
Backwards compatibility with this RFC is to be obsoleted.
:rfc:`2087`
IMAP4 QUOTA extension, obsoleted by :rfc:`9208`.
:rfc:`2088`
IMAP4 non-synchronizing literals, obsoleted by :rfc:`7888`.
:rfc:`2177`
IMAP4 IDLE command
:rfc:`2192`
IMAP URL Scheme, obsoleted by
:rfc:`5092`.
:rfc:`2193`
IMAP4 Mailbox Referrals
:rfc:`2195`
IMAP/POP AUTHorize Extension for Simple Challenge/Response
:rfc:`2246`
The TLS Protocol Version 1.0
:rfc:`2298`
Extensible Message Format for Message Disposition Notifications
(MDNs)
:rfc:`2342`
IMAP4 Namespace
:rfc:`2359`
IMAP4 UIDPLUS extension, obsoleted by :rfc:`4315`
:rfc:`2425`
A MIME Content-Type for Directory Information
:rfc:`2426`
vCard MIME Directory Profile
:rfc:`2444`
The One-Time-Password SASL Mechanism
:rfc:`2449`
POP3 Extension Mechanism
:rfc:`2518`
HTTP Extensions for Distributed Authoring -- WEBDAV
:rfc:`2595`
Using TLS with IMAP, POP3 and ACAP
:rfc:`2617`
HTTP Authentication: Basic and Digest Access Authentication,
updated by :rfc:`7615`, :rfc:`7616`, :rfc:`7617`.
:rfc:`2817`
HTTP Upgrading to TLS Within HTTP/1.1
:rfc:`2818`
HTTP Over TLS
:rfc:`2821`
Simple Mail Transfer Protocol
:rfc:`2822`
Internet Message Format
:rfc:`2831`
Using Digest Authentication as a SASL Mechanism
:rfc:`2920`
SMTP Service Extension for Command Pipelining
:rfc:`2971`
IMAP4 ID extension
:rfc:`2980`
Common NNTP Extensions
:rfc:`3028`
Sieve: A Mail Filtering Language
:rfc:`3206`
The SYS and AUTH POP Response Codes
:rfc:`3207`
SMTP Service Extension for Secure SMTP over TLS
:rfc:`3253`
Versioning Extensions to WebDAV (Web Distributed Authoring and
Versioning)
:rfc:`3339`
Date and Time on the Internet: Timestamps
:rfc:`3348`
IMAP4 Child Mailbox Extension
:rfc:`3431`
Sieve Extension: Relational Tests
:rfc:`3463`
Enhanced Mail System Status Codes
:rfc:`3501`
Internet Message Access Protocol - version 4rev1, obsoleted by
:rfc:`9051`.
:rfc:`3502`
IMAP MULTIAPPEND extension
:rfc:`3516`
IMAP4 Binary Content Extension
:rfc:`3598`
Sieve Email Filtering -- Subaddress Extension, obsoleted by
:rfc:`5233`.
:rfc:`3656`
MUPDATE Protocol (For Cyrus Murder)
:rfc:`3691`
Internet Message Access Protocol (IMAP) UNSELECT command
:rfc:`3744`
Web Distributed Authoring and Versioning (WebDAV) Access Control
Protocol
:rfc:`3834`
Recommendations for Automatic Responses to Electronic Mail
:rfc:`3848`
ESMTP and LMTP Transmission Types Registration
:rfc:`3894`
Sieve Extension: Copying Without Side Effects
:rfc:`3977`
Network News Transfer Protocol (NNTP)
:rfc:`4287`
The Atom Syndication Format
:rfc:`4314`
IMAP4 Access Control List (ACL) Extension
:rfc:`4315`
Internet Message Access Protocol (IMAP) - UIDPLUS extension
:rfc:`4331`
Quota and Size Properties for Distributed Authoring and Versioning
(DAV) Collections
:rfc:`4346`
The Transport Layer Security (TLS) Protocol Version 1.1
:rfc:`4422`
Simple Authentication and Security Layer (SASL)
:rfc:`4466`
Collected Extensions to IMAP4 ABNF
:rfc:`4467`
Internet Message Access Protocol (IMAP) - URLAUTH Extension, updated
by :rfc:`5092`.
:rfc:`4469`
Internet Message Access Protocol (IMAP) CATENATE Extension
:rfc:`4505`
Anonymous Simple Authentication and Security Layer (SASL) Mechanism
:rfc:`4550`
Internet Email to Support Diverse Service Environments (Lemonade)
Profile
:rfc:`4551`
IMAP Extension for Conditional STORE Operation or Quick Flag Changes
Resynchronization, obsoleted by :rfc:`7162`.
:rfc:`4559`
SPNEGO-based Kerberos and NTLM HTTP Authentication in Microsoft
Windows
:rfc:`4616`
The PLAIN Simple Authentication and Security Layer (SASL) Mechanism
:rfc:`4642`
Using Transport Layer Security (TLS) with Network News Transfer
Protocol (NNTP)
:rfc:`4643`
Network News Transfer Protocol (NNTP) Extension for Authentication
:rfc:`4644`
Network News Transfer Protocol (NNTP) Extension for Streaming Feeds
:rfc:`4731`
IMAP4 Extension to SEARCH Command for Controlling What Kind of
Information Is Returned
:rfc:`4791`
Calendaring Extensions to WebDAV (CalDAV)
:rfc:`4918`
HTTP Extensions for Web Distributed Authoring and Versioning
(WebDAV)
:rfc:`4954`
SMTP Service Extension for Authentication
:rfc:`4959`
IMAP Extension for Simple Authentication and Security Layer (SASL)
Initial Client Response
:rfc:`4978`
The IMAP COMPRESS Extension
:rfc:`5032`
WITHIN Search Extension to the IMAP Protocol
:rfc:`5034`
The Post Office Protocol (POP3) Simple Authentication and Security
Layer (SASL) Authentication Mechanism
:rfc:`5092`
IMAP URL Scheme, updated by :rfc:`5593`.
:rfc:`5161`
The IMAP ENABLE Extension
:rfc:`5162`
IMAP4 Extensions for Quick Mailbox Resynchronization, obsoleted by
:rfc:`7162`.
:rfc:`5173`
Sieve Email Filtering: Body Extension
:rfc:`5182`
IMAP Extension for Referencing the Last SEARCH Result
:rfc:`5183`
Sieve Email Filtering: Environment Extension
:rfc:`5228`
Sieve: A Mail Filtering Language
:rfc:`5229`
Sieve Email Filtering: Variables Extension
:rfc:`5230`
Sieve Email Filtering: Vacation Extension
:rfc:`5231`
Sieve Email Filtering: Relational Extension
:rfc:`5232`
Sieve Email Filtering: Imap4flags Extension
.. versionadded:: 2.5.0
:rfc:`5233`
Sieve Email Filtering: Subaddress Extension
:rfc:`5235`
Sieve Email Filtering: Spamtest and Virustest Extensions
:rfc:`5256`
Internet Message Access Protocol - SORT and THREAD Extensions
:rfc:`5257`
Internet Message Access Protocol - ANNOTATE Extension
:rfc:`5258`
Internet Message Access Protocol version 4 - LIST Command Extensions
:rfc:`5260`
Sieve Email Filtering: Date and Index Extensions
.. versionadded:: 2.5.0
:rfc:`5267`
Contexts for IMAP4
.. NOTE::
The ESORT capability is implemented. The CONTEXT=SEARCH and
CONTEXT=SORT capabilities are not implemented.
:rfc:`5293`
Sieve Email Filtering: Editheader Extension
:rfc:`5321`
Simple Mail Transfer Protocol
:rfc:`5322`
Internet Message Format
.. NOTE::
The JMAP mapping is incomplete.
:rfc:`5397`
WebDAV Current Principal Extension
:rfc:`5423`
Internet Message Store Events
:rfc:`5429`
Sieve Email Filtering: Reject and Extended Reject Extensions
:rfc:`5435`
Sieve Email Filtering: Extension for Notifications
:rfc:`5436`
Sieve Notification Mechanism: mailto
:rfc:`5463`
Sieve Email Filtering: Ihave Extension
:rfc:`5464`
The IMAP METADATA Extension
:rfc:`5465`
The IMAP NOTIFY Extension
:rfc:`5490`
The Sieve Mail-Filtering Language -- Extensions for Checking Mailbox
Status and Accessing Mailbox Metadata
:rfc:`5524`
Extended URLFETCH for Binary and Converted Parts
:rfc:`5536`
Netnews Article Format
:rfc:`5537`
Netnews Architecture and Protocols
:rfc:`5545`
Internet Calendaring and Scheduling Core Object Specification
(iCalendar)
:rfc:`5546`
iCalendar Transport-Independent Interoperability Protocol (iTIP)
:rfc:`5550`
The Internet Email to Support Diverse Service Environments (Lemonade) Profile
.. NOTE::
The URL-PARTIAL capability is implemented. The CONTEXT=SEARCH,
CONTEXT=SORT, CONVERT, I18NLEVEL=1, and NOTIFY capabilities
are not implemented.
:rfc:`5593`
Internet Message Access Protocol (IMAP) - URL Access Identifier
Extension
:rfc:`5689`
Extended MKCOL for Web Distributed Authoring and Versioning (WebDAV)
:rfc:`5703`
Sieve Email Filtering: MIME Part Tests, Iteration, Extraction,
Replacement, and Enclosure
:rfc:`5804`
A protocol for Remotely Managing Sieve Scripts
:rfc:`5819`
IMAP4 Extension for Returning STATUS Information in Extended LIST
:rfc:`5957`
Display-Based Address Sorting for the IMAP4 SORT Extension
:rfc:`5995`
Using POST to Add Members to Web Distributed Authoring and
Versioning (WebDAV) Collections
:rfc:`6009`
Sieve Email Filtering: Delivery Status Notifications and
Deliver-By Extensions
:rfc:`6047`
iCalendar Message-Based Interoperability Protocol (iMIP)
:rfc:`6101`
The Secure Sockets Layer (SSL) Protocol Version 3.0
.. NOTE::
SSLv3 is considered insecure as it is vulnerable to POODLE.
Support for SSLv3 is being deprecated and removed.
:rfc:`6131`
Sieve Vacation Extension: "Seconds" Parameter
:rfc:`6134`
Sieve Extension: Externally Stored Lists
:rfc:`6154`
IMAP LIST Extension for Special-Use Mailboxes
.. NOTE::
The LIST and LSUB commands return the special-use flags, unless the
``specialusealways`` configuration variable is explicitly turned off.
:rfc:`6203`
IMAP4 Extension for Fuzzy Search
:rfc:`6321`
xCal: The XML Format for iCalendar
:rfc:`6350`
vCard Format Specification
:rfc:`6352`
CardDAV: vCard Extensions to Web Distributed Authoring and
Versioning (WebDAV)
:rfc:`6376`
DomainKeys Identified Mail (DKIM) Signatures
:rfc:`6558`
Sieve Extension for Converting Messages before Delivery
:rfc:`6455`
The WebSocket Protocol
:rfc:`6578`
Collection Synchronization for Web Distributed Authoring and
Versioning (WebDAV)
:rfc:`6585`
Additional HTTP Status Codes
:rfc:`6609`
Sieve Email Filtering: Include Extension
:rfc:`6638`
Scheduling Extensions to CalDAV
:rfc:`6764`
Locating Services for Calendaring Extensions to WebDAV (CalDAV) and
vCard Extensions to WebDAV (CardDAV)
:rfc:`6797`
HTTP Strict Transport Security (HSTS)
:rfc:`6851`
Internet Message Access Protocol (IMAP) - MOVE Extension
.. versionadded:: 2.5.0
:rfc:`6901`
JavaScript Object Notation (JSON) Pointer
:rfc:`7162`
IMAP Extensions: Quick Flag Changes Resynchronization (CONDSTORE)
and Quick Mailbox Resynchronization (QRESYNC)
:rfc:`7230`
Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing
:rfc:`7231`
Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content
:rfc:`7232`
Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests
:rfc:`7233`
Hypertext Transfer Protocol (HTTP/1.1): Range Requests
:rfc:`7234`
Hypertext Transfer Protocol (HTTP/1.1): Caching
:rfc:`7235`
Hypertext Transfer Protocol (HTTP/1.1): Authentication
:rfc:`7238`
The Hypertext Transfer Protocol Status Code 308 (Permanent Redirect)
:rfc:`7239`
Forwarded HTTP Extension
:rfc:`7240`
Prefer Header for HTTP
:rfc:`7265`
jCal: The JSON Format for iCalendar
:rfc:`7352`
Sieve Email Filtering: Detecting Duplicate Deliveries
:rfc:`7377`
IMAP4 Multimailbox SEARCH Extension
:rfc:`7529`
Non-Gregorian Recurrence Rules in the Internet Calendaring and
Scheduling Core Object Specification (iCalendar)
:rfc:`7540`
Hypertext Transfer Protocol Version 2 (HTTP/2)
:rfc:`7615`
HTTP Authentication-Info and Proxy-Authentication-Info Response
Header Fields
:rfc:`7616`
HTTP Digest Access Authentication
:rfc:`7617`
The 'Basic' HTTP Authentication Scheme
:rfc:`7692`
Compression Extensions for WebSocket
:rfc:`7694`
Hypertext Transfer Protocol (HTTP) Client-Initiated Content-Encoding
:rfc:`7725`
An HTTP Status Code to Report Legal Obstacles
:rfc:`7804`
Salted Challenge Response HTTP Authentication Mechanism
:rfc:`7808`
Time Zone Data Distribution Service
:rfc:`7809`
CalDAV: Time Zones by Reference
:rfc:`7888`
IMAP4 Non-synchronizing Literals
:rfc:`7889`
The IMAP APPENDLIMIT Extension
:rfc:`7932`
Brotli Compressed Data Format
:rfc:`7953`
Calendar Availability
:rfc:`7986`
New Properties for iCalendar
.. NOTE::
Support here means, that when the iCalendar stream is retrieved with HTTP GET,
Cyrus IMAP inserts the color, description and name from the WebDAV properties.
IMAGE, SOURCE, multi-lingual calendar DESCRIPTIONs, URL, LAST-MODIFIED, CATEGORIES,
and REFRESH-INTERVAL are not exported on iCalendar streams retrieved with GET.
Individual iCalendar objects (VEVENT, VTODO, VJOURNAL) can be uploaded and
downloaded with the New Properties for iCalendar.
:rfc:`8144`
Use of the Prefer Header Field in Web Distributed Authoring and
Versioning (WebDAV)
:rfc:`8246`
HTTP Immutable Responses
:rfc:`8288`
Web Linking
:rfc:`8297`
An HTTP Status Code for Indicating Hints
:rfc:`8437`
IMAP UNAUTHENTICATE Extension for Connection Reuse
:rfc:`8438`
IMAP Extension for STATUS=SIZE
:rfc:`8440`
IMAP4 Extension for Returning MYRIGHTS Information in Extended LIST
:rfc:`8441`
Bootstrapping WebSockets with HTTP/2
:rfc:`8474`
IMAP Extension for Object Identifiers
:rfc:`8508`
IMAP REPLACE Extension
:rfc:`8514`
Internet Message Access Protocol (IMAP) - SAVEDATE Extension
:rfc:`8579`
Sieve Email Filtering: Delivering to Special-Use Mailboxes
:rfc:`8580`
Sieve Extension: File Carbon Copy (FCC)
:rfc:`8607`
Calendaring Extensions to WebDAV (CalDAV): Managed Attachments
:rfc:`8620`
The JSON Meta Application Protocol (JMAP)
:rfc:`8621`
The JSON Meta Application Protocol (JMAP) for Mail
:rfc:`8878`
Zstandard Compression and the application/zstd Media Type
:rfc:`8887`
A JSON Meta Application Protocol (JMAP) Subprotocol for WebSocket
:rfc:`8970`
IMAP4 Extension: Message Preview Generation
:rfc:`9051`
Internet Message Access Protocol (IMAP) - version 4rev2
:rfc:`9208`
IMAP QUOTA Extension
IETF RFC Drafts
===============
draft-ietf-extra-imap-list-metadata
IMAP4 Extension for Returning Mailbox METADATA in Extended LIST
draft-ietf-extra-sieve-mailboxid
Sieve Email Filtering: delivery by mailboxid
draft-ietf-extra-sieve-snooze
Sieve Email Filtering: Snooze Extension
draft-ietf-extra-imap-uidonly
IMAP Extension for only using and returning UIDs
draft-ietf-jmap-calendars
JMAP for Calendars
draft-ietf-jmap-sieve
JMAP for Sieve Scripts
draft-murchison-lmtp-ignorequota
LMTP Service Extension for Ignoring Recipient Quotas
[MS-NTHT] NTLM Over HTTP Protocol Specification
draft-ietf-sieve-regex
Sieve Email Filtering -- Regular Expression Extension
draft-york-vpoll
VPOLL: Consensus Scheduling Component for iCalendar
draft-desruisseaux-ischedule
Internet Calendar Scheduling Protocol (iSchedule)
draft-thomson-hybi-http-timeout
Hypertext Transfer Protocol (HTTP) Keep-Alive Header
..
caldav-ctag Calendar Collection Entity Tag (CTag) in CalDAV
Brief Header Microsoft 'Brief' header extension
RFC Wishlist
============
:rfc:`2221`
IMAP4 Login Referrals
:rfc:`2295`
Transparent Content Negotiation in HTTP
:rfc:`2369`
The Use of URLs as Meta-Syntax for Core Mail List Commands
and their Transport through Message Header Fields
:rfc:`3229`
Delta encoding in HTTP
:rfc:`5255`
Internet Message Access Protocol Internationalization
:rfc:`5259`
Internet Message Access Protocol - CONVERT Extension
:rfc:`5437`
Sieve Notification Mechanism: Extensible Messaging and Presence
Protocol (XMPP)
:rfc:`5466`
IMAP4 Extension for Named Searches (Filters)
:rfc:`5842`
Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)
:rfc:`6468`
Sieve Notification Mechanism: SIP MESSAGE
:rfc:`6785`
Support for Internet Message Access Protocol (IMAP) Events in Sieve
:rfc:`6855`
IMAP Support for UTF-8
:rfc:`8470`
Using Early Data in HTTP
|