<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
    <channel>
        <title>5.1 (en)</title>
        <lastBuildDate>Mon, 20 Apr 2026 18:31:12 GMT</lastBuildDate>
        
            <item>
                <title>Reparse point is saved as a directory for Windows path backup without Volume Shadow Copy Service (VSS)</title>
                <description>
                    &lt;p&gt;&lt;strong&gt;Problem:&amp;nbsp;&lt;/strong&gt;In case of a Windows path backup without using the &#039;&lt;em&gt;Backup with VSS&lt;/em&gt;&#039; option, Windows reparse points are sometimes incorrectly backed up as directories.&lt;/p&gt;
&lt;p&gt;Windows reparse points are mainly used for symbolic NTFS links, directory connection points, volume mount points and Unix domain sockets&lt;br /&gt; (see also &lt;a href=&quot;https://en.wikipedia.org/wiki/NTFS_reparse_point&quot;&gt;https://en.wikipedia.org/wiki/NTFS_reparse_point&lt;/a&gt;).&lt;br /&gt; &lt;br /&gt; If using a Microsoft volume with data deduplication, which internally uses special reparse points for deduplication, this behavior may result in the files&#039; contents not being backed up.&lt;br /&gt; &lt;br /&gt; This issue only occurs when running a Windows path backup and the option &#039;&lt;em&gt;Backup with VSS&lt;/em&gt;&#039; has been deselected in the backup properties.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution: &lt;/strong&gt;Enable option &#039;&lt;em&gt;Backup with VSS&lt;/em&gt;&#039; to execute Windows path backup of NTFS or ReFS volumes. For more details, see &lt;a href=&quot;https://wiki.sepsoftware.com/wiki/index.php/Release_Notes_5.1.0_Apollon_V2#issues&quot; title=&quot;known Issues&quot;&gt;Known Issues&lt;/a&gt;.&lt;/p&gt;
                </description>
                <category>
                    strictly recommended
                </category>
                <guid>
                    {&quot;greater&quot;:&quot;5.1.0.4&quot;, &quot;lesser&quot;:&quot;5.1.0.18&quot;}
                </guid>
                <pubdate>
                    Wed, 17 Apr 2024 13:50:00 GMT
                </pubdate>
            </item>
        
            <item>
                <title>Warning: On Linux Clients, changed processing of regular expressions may impact backup sizes</title>
                <description>
                    &lt;p&gt;&lt;strong&gt;Problem description&lt;/strong&gt;: With update to &lt;strong&gt;&lt;em&gt;Apollon V2&lt;/em&gt; (5.1.0.14)&lt;/strong&gt;, the exclude lists on &lt;strong&gt;Linux&lt;/strong&gt; may no longer work as intended, causing backups to be larger than expected. For Linux Clients, in backup tasks or SBC exclude lists, the changed interpretation of regular expressions can lead to backups containing data that should have been excluded. This affects complex regular expressions with escaped metacharacters (), or |.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Cause&lt;/strong&gt;: In &lt;strong&gt;5.1.0.14 &lt;em&gt;Apollon V2&lt;/em&gt;&lt;/strong&gt;, for SEP sesam Linux SBC, the GNU findutils were replaced by Perl-compatible Regular Expressions (PCRE), which changes how metacharacters are handled. Some metacharacters are no longer escaped with a backslash, instead, a backslash causes them to be treated as literal characters: \( \) is now interpreted as ( ) and \| is now |.&lt;/p&gt;
&lt;p&gt;With &lt;a href=&quot;https://www.gnu.org/software/findutils/manual/html_node/find_html/findutils_002ddefault-regular-expression-syntax.html&quot; target=&quot;_blank&quot; title=&quot;GNU findutils syntax&quot;&gt;GNU findutils syntax&lt;/a&gt;, grouping was performed using backslashes followed by parentheses, for example, \( and \), and the alternation operator was represented as \|.&lt;/p&gt;
&lt;p&gt;With the update to &lt;a href=&quot;https://en.wikipedia.org/wiki/Regular_expression&quot; target=&quot;_blank&quot; title=&quot;PCRE syntax&quot;&gt;Perl-compatible Regular Expressions (PCRE)&lt;/a&gt;, the meaning of metacharacters escaped with a backslash is reversed for some characters. The expressions \( \) now become ( ), and \| become |. This change affects how regular expressions are interpreted and applied on Linux Clients and can therefore result in larger backup size.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution&lt;/strong&gt;: On &lt;strong&gt;Linux&lt;/strong&gt; clients, review your exclude lists and, if necessary, update the regular expressions to use the PCRE syntax.Check your exclusion patterns in SEP sesam Linux backup tasks, in the client &lt;em&gt;sm.ini&lt;/em&gt; file section &lt;em&gt;[SBC_EXCLUDE]&lt;/em&gt; and the SBC exclude list files referenced in the SBC with the option &lt;em&gt;-X {excludelist_file}&lt;/em&gt;, and remove the backslashes that are used to escape the metacharacters, the leading &#039;\&#039;&amp;nbsp; from \(, \) or \|. For more information, refer to SEP sesam wiki article &lt;a href=&quot;https://wiki.sep.de/wiki/index.php/5_1_0:Exclude_with_Regular_Expressions&quot; target=&quot;_blank&quot; title=&quot;Exclude with Regular Expressions&quot;&gt;Exclude with Regular Expressions&lt;/a&gt; and &lt;a href=&quot;https://wiki.sep.de/wiki/index.php/5_1_0:Creating_Exclude_List&quot; target=&quot;_blank&quot; title=&quot;Creating Exclude Lists&quot;&gt;Creating Exclude Lists&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To convert the regular expressions in exclude_list files from GNU findutils into PCRE, you can use the following command:&lt;/p&gt;
&lt;pre&gt;
sed -e &#039;s@\\(@(@g&#039; -e &#039;s@\\)@)@g&#039; -e &#039;s@\\|@|@g&#039; &amp;lt;exclude_list file&amp;gt;
&lt;/pre&gt;
&lt;p&gt;where &amp;lt;exclude_list file&amp;gt; is the path to the file, for example, /home/sesam/exclude_list_for_backup_task_A.txt&lt;/p&gt;
&lt;p&gt;Example&lt;/p&gt;
&lt;ul&gt; 	&lt;li&gt;SEP sesam version &lt;strong&gt;5.1.0 &lt;em&gt;Apollon&lt;/em&gt;&lt;/strong&gt; and &lt;strong&gt;older&lt;/strong&gt; - GNU findutils default regular expression:&lt;/li&gt; &lt;/ul&gt;
&lt;pre&gt;
     \./sapmnt/\([A-Z][0-9][0-9]\|[A-Z][A-Z][A-Z]\|[A-Z][A-Z][0-9]\)/global/.*BDCLG$
&lt;/pre&gt;
&lt;ul&gt; 	&lt;li&gt;SEP sesam version &lt;strong&gt; &lt;em&gt;Apollon V2&lt;/em&gt; (5.1.0.14)&lt;/strong&gt; and newer - PCRE extended regular expression:&lt;/li&gt; &lt;/ul&gt;
&lt;pre&gt;
     \./sapmnt/([A-Z][0-9][0-9]|[A-Z][A-Z][A-Z]|[A-Z][A-Z][0-9])/global/.*BDCLG$
&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;SEP sesam Windows clients already use the Perl-compatible regular expression syntax (PCRE), so no changes are required.&lt;/p&gt;
                </description>
                <category>
                    strictly recommended
                </category>
                <guid>
                    {&quot;greater&quot;:&quot;5.1.0.13&quot;, &quot;lesser&quot;:&quot;5.1.0.20&quot;}
                </guid>
                <pubdate>
                    Thu, 11 Jul 2024 16:07:00 GMT
                </pubdate>
            </item>
        
    </channel>
</rss>
