Discuss this help topic in SecureBlackbox Forum

TElPOP3Client.MaxLineLength

TElPOP3Client     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies maximum expected line length

Declaration

[C#]
    int MaxLineLength;

[VB.NET]
    Property MaxLineLength As Integer

[Pascal]
    property MaxLineLength : integer;

[C++]
    int32_t get_MaxLineLength();
    void set_MaxLineLength(int32_t Value);

[PHP]
    integer get_MaxLineLength()
    void set_MaxLineLength(integer $Value)

[Java]
    int getMaxLineLength();
    void setMaxLineLength(int NewValue);

Parameters

  • NewValue -

Description

    Use this property to specify, how long the expected mail line can be. Setting the very long value leads to memory increase.
    Default value is 10000. RFC 5322 requires that lines of up to 1000 characters long are handled correctly.

Discuss this help topic in SecureBlackbox Forum