Spam detection software, running on the system "kualalumpur.lrde.epita.fr", has
identified this incoming email as possible spam. The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email. If you have any questions, see
the administrator of that system for details.
Content preview: Fast erection Prolonged effect No prescription
required 2 popular medicines: CIALIS - http://www.get-a-pill.com/sv/
VIAGRA - http://www.get-a-pill.com/vt/ Discreet packaging [...]
Content analysis details: (15.5 points, 5.0 required)
pts rule name description
---- ---------------------- --------------------------------------------------
1.2 RCVD_NUMERIC_HELO Received: contains an IP address used for HELO
0.2 DRUG_ED_CAPS BODY: Mentions an E.D. drug
0.0 HTML_MESSAGE BODY: HTML included in message
0.1 HTML_TAG_EXIST_TBODY BODY: HTML has "tbody" tag
0.1 RAZOR2_CF_RANGE_51_100 BODY: Razor2 gives confidence level above 50%
[cf: 100]
3.5 BAYES_99 BODY: Bayesian spam probability is 99 to 100%
[score: 1.0000]
0.1 HTML_50_60 BODY: Message is 50% to 60% HTML
1.5 RAZOR2_CHECK Listed in Razor2 (http://razor.sf.net/)
1.0 URIBL_SBL Contains an URL listed in the SBL blocklist
[URIs: get-a-pill.com]
3.2 URIBL_OB_SURBL Contains an URL listed in the OB SURBL blocklist
[URIs: get-a-pill.com]
4.3 URIBL_SC_SURBL Contains an URL listed in the SC SURBL blocklist
[URIs: get-a-pill.com]
0.2 DRUGS_ERECTILE Refers to an erectile drug
0.1 FORGED_OUTLOOK_TAGS Outlook can't send HTML in this format
The original message was not completely plain text, and may be unsafe to
open with some email clients; in particular, it may contain a virus,
or confirm that your address can receive spam. If you wish to view
it, it may be safer to save it to a file and open it with an editor.
I am not sure this is the good way to do this, but...
Index: ChangeLog
from Benoît Perrot <benoit(a)lrde.epita.fr>
* bootstrap: Update the time stamp of reference output files to
avoid them to be illegitimately regenerated when checked out from
the repository.
2004-10-31 Benoît Perrot <benoit(a)lrde.epita.fr>
Index: bootstrap
--- bootstrap (revision 144)
+++ bootstrap (revision 145)
@@ -4,4 +4,7 @@
cd src/inst
../../dev/inst-nodes-mk-gen.py < ../../dev/nolimips.xml > nodes.mk
cd $here
+
+find tests -name '*.ref' -exec touch '{}' ';'
+
autoreconf -f -v -i -m
Index: ChangeLog
from Benoît Perrot <benoit(a)lrde.epita.fr>
* src/vm/cpu.cc:
Effectively use Cpu::register_type, and not system's register_t.
cpu.cc did not compile on SunOS, where register_t is not defined.
2004-10-25 Benoît Perrot <benoit(a)lrde.epita.fr>
Index: src/vm/cpu.cc
--- src/vm/cpu.cc (revision 141)
+++ src/vm/cpu.cc (revision 142)
@@ -127,10 +127,10 @@
void
Cpu::visit(const inst::Add& add)
{
- register_t a = get_register(add.get_src1 ());
- register_t b = get_register(add.get_src2 ());
+ register_type a = get_register(add.get_src1 ());
+ register_type b = get_register(add.get_src2 ());
- register_t c = a + b;
+ register_type c = a + b;
set_register(add.get_dest (), c);
// FIXME: might be accelerated by testing only the sign bit.
@@ -141,10 +141,10 @@
void
Cpu::visit(const inst::Addi& addi)
{
- register_t a = get_register(addi.get_src ());
+ register_type a = get_register(addi.get_src ());
int b = addi.get_imm ();
- register_t c = a + b;
+ register_type c = a + b;
set_register(addi.get_dest (), c);
// FIXME: might be accelerated by testing only the sign bit.
@@ -169,10 +169,10 @@
void
Cpu::visit(const inst::Sub& sub)
{
- register_t a = get_register(sub.get_src1 ());
- register_t b = get_register(sub.get_src2 ());
+ register_type a = get_register(sub.get_src1 ());
+ register_type b = get_register(sub.get_src2 ());
- register_t c = a - b;
+ register_type c = a - b;
set_register(sub.get_dest (), c);
if ((a < b && c > 0) || (a > b && c < 0))