Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/sieve
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: Sieve (RFC5228) mode</title>
[2] Fix | Delete
<meta charset="utf-8"/>
[3] Fix | Delete
<link rel=stylesheet href="../../doc/docs.css">
[4] Fix | Delete
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css">
[6] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="sieve.js"></script>
[8] Fix | Delete
<style>.CodeMirror {background: #f8f8f8;}</style>
[9] Fix | Delete
<div id=nav>
[10] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[11] Fix | Delete
[12] Fix | Delete
<ul>
[13] Fix | Delete
<li><a href="../../index.html">Home</a>
[14] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[15] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[16] Fix | Delete
</ul>
[17] Fix | Delete
<ul>
[18] Fix | Delete
<li><a href="../index.html">Language modes</a>
[19] Fix | Delete
<li><a class=active href="#">Sieve (RFC5228)</a>
[20] Fix | Delete
</ul>
[21] Fix | Delete
</div>
[22] Fix | Delete
[23] Fix | Delete
<article>
[24] Fix | Delete
<h2>Sieve (RFC5228) mode</h2>
[25] Fix | Delete
<form><textarea id="code" name="code">
[26] Fix | Delete
#
[27] Fix | Delete
# Example Sieve Filter
[28] Fix | Delete
# Declare any optional features or extension used by the script
[29] Fix | Delete
#
[30] Fix | Delete
[31] Fix | Delete
require ["fileinto", "reject"];
[32] Fix | Delete
[33] Fix | Delete
#
[34] Fix | Delete
# Reject any large messages (note that the four leading dots get
[35] Fix | Delete
# "stuffed" to three)
[36] Fix | Delete
#
[37] Fix | Delete
if size :over 1M
[38] Fix | Delete
{
[39] Fix | Delete
reject text:
[40] Fix | Delete
Please do not send me large attachments.
[41] Fix | Delete
Put your file on a server and send me the URL.
[42] Fix | Delete
Thank you.
[43] Fix | Delete
.... Fred
[44] Fix | Delete
.
[45] Fix | Delete
;
[46] Fix | Delete
stop;
[47] Fix | Delete
}
[48] Fix | Delete
[49] Fix | Delete
#
[50] Fix | Delete
# Handle messages from known mailing lists
[51] Fix | Delete
# Move messages from IETF filter discussion list to filter folder
[52] Fix | Delete
#
[53] Fix | Delete
if header :is "Sender" "owner-ietf-mta-filters@imc.org"
[54] Fix | Delete
{
[55] Fix | Delete
fileinto "filter"; # move to "filter" folder
[56] Fix | Delete
}
[57] Fix | Delete
#
[58] Fix | Delete
# Keep all messages to or from people in my company
[59] Fix | Delete
#
[60] Fix | Delete
elsif address :domain :is ["From", "To"] "example.com"
[61] Fix | Delete
{
[62] Fix | Delete
keep; # keep in "In" folder
[63] Fix | Delete
}
[64] Fix | Delete
[65] Fix | Delete
#
[66] Fix | Delete
# Try and catch unsolicited email. If a message is not to me,
[67] Fix | Delete
# or it contains a subject known to be spam, file it away.
[68] Fix | Delete
#
[69] Fix | Delete
elsif anyof (not address :all :contains
[70] Fix | Delete
["To", "Cc", "Bcc"] "me@example.com",
[71] Fix | Delete
header :matches "subject"
[72] Fix | Delete
["*make*money*fast*", "*university*dipl*mas*"])
[73] Fix | Delete
{
[74] Fix | Delete
# If message header does not contain my address,
[75] Fix | Delete
# it's from a list.
[76] Fix | Delete
fileinto "spam"; # move to "spam" folder
[77] Fix | Delete
}
[78] Fix | Delete
else
[79] Fix | Delete
{
[80] Fix | Delete
# Move all other (non-company) mail to "personal"
[81] Fix | Delete
# folder.
[82] Fix | Delete
fileinto "personal";
[83] Fix | Delete
}
[84] Fix | Delete
</textarea></form>
[85] Fix | Delete
<script>
[86] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
[87] Fix | Delete
</script>
[88] Fix | Delete
[89] Fix | Delete
<p><strong>MIME types defined:</strong> <code>application/sieve</code>.</p>
[90] Fix | Delete
[91] Fix | Delete
</article>
[92] Fix | Delete
[93] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function