Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- MODEL_README.md +13 -11
- README.md +11 -9
- figures/class_distribution.png +0 -0
- figures/confusion_matrix.png +0 -0
- figures/eli5_global_importance.png +0 -0
- figures/eli5_global_weights.html +357 -357
- figures/email_length_distributions.png +0 -0
- figures/feature_reduction_experiment.png +0 -0
- figures/lime_explanations.png +2 -2
- figures/lime_global_importance.png +0 -0
- figures/roc_curve.png +0 -0
- figures/shap_dependence_plots.png +2 -2
- figures/shap_global_importance.png +0 -0
- figures/shap_local_true_negative_ham.png +0 -0
- figures/shap_local_true_positive_spam.png +0 -0
- figures/shap_summary_beeswarm.png +2 -2
- figures/top_words.png +0 -0
- figures/word_clouds.png +2 -2
- figures/xai_execution_time.png +0 -0
- figures/xai_feature_comparison.png +0 -0
- notebooks/portable_student_notebook/README.md +39 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0001.ea7e79d3153e7469e7a9c3e0af6a357e +113 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0002.b3120c4bcbf3101e661161ee7efcb8bf +73 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0003.acfc5ad94bbd27118a0d8685d18c89dd +82 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0004.e8d5727378ddde5c3be181df593f1712 +78 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0005.8c3b9e9c0f3f183ddaf7592a11b99957 +106 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0006.ee8b0dba12856155222be180ba122058 +77 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0007.c75188382f64b090022fa3b095b020b0 +74 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0008.20bc0b4ba2d99aae1c7098069f611a9b +88 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0009.435ae292d75abb1ca492dcc2d5cf1570 +85 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0010.4996141de3f21e858c22f88231a9f463 +176 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0011.07b11073b53634cff892a7988289a72e +126 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0012.d354b2d2f24d1036caf1374dd94f4c94 +70 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0013.ff597adee000d073ae72200b0af00cd1 +72 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0014.532e0a17d0674ba7a9baa7b0afe5fb52 +121 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0015.a9ff8d7550759f6ab62cc200bdf156e7 +68 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0016.d82758030e304d41fb3f4ebbb7d9dd91 +79 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0017.d81093a2182fc9135df6d9158a8ebfd6 +76 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0018.ba70ecbeea6f427b951067f34e23bae6 +146 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0019.a8a1b2767e83b3be653e4af0148e1897 +133 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0020.ef397cef16f8041242e3b6560e168053 +67 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0021.f8e73bdba7277d967af4d561f0402129 +81 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0022.7241da4491c49b50c0470a3638ee35c4 +75 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0023.b4a61a2990263e8825246e41a8d78399 +65 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0024.771af861a302951df7630ec4ff1965a2 +56 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0025.64d0382de54b9e4c5b4200173133b8d7 +67 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0026.6baf1aea162ccb9a6e9f142c0715ceb4 +80 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0027.11da06d9130a188bf0ffb2060881dbe9 +84 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0028.54cf7aa229456fb33194b3a12a713e3e +160 -0
- notebooks/portable_student_notebook/data/raw/easy_ham/0029.7119e865bff73aca46681d96a451cb60 +104 -0
MODEL_README.md
CHANGED
|
@@ -15,13 +15,13 @@ license: mit
|
|
| 15 |
pipeline_tag: text-classification
|
| 16 |
---
|
| 17 |
|
| 18 |
-
# Spam Email Classifier — sklearn Voting Ensemble with XAI
|
| 19 |
|
| 20 |
**ENGT 375 — Applied Machine Learning | Spring 2026 | Old Dominion University**
|
| 21 |
|
| 22 |
> **Disclaimer:** This model was created as a student project for Applied Machine Learning at ODU. It is intended for **educational and research purposes only** and should not be used as a sole spam/phishing filter in production. Classification accuracy may vary, and the model may produce incorrect or misleading results. Always use established email security tools for real-world spam filtering.
|
| 23 |
|
| 24 |
-
A voting ensemble classifier (Random Forest + Logistic Regression + Linear SVM with calibration) for spam email detection, with LIME, SHAP, and ELI5 explainability support.
|
| 25 |
|
| 26 |
## Model Details
|
| 27 |
|
|
@@ -38,17 +38,18 @@ A voting ensemble classifier (Random Forest + Logistic Regression + Linear SVM w
|
|
| 38 |
|
| 39 |
| Model | Accuracy | Precision | Recall | F1 Score |
|
| 40 |
|-------|----------|-----------|--------|----------|
|
| 41 |
-
| **VotingEnsemble (deployed)** | **0.
|
| 42 |
-
| RandomForest | 0.
|
| 43 |
-
| LogisticRegression | 0.
|
| 44 |
-
| SVM | 0.
|
| 45 |
|
| 46 |
## Training Details
|
| 47 |
|
| 48 |
| Parameter | Value |
|
| 49 |
|-----------|-------|
|
| 50 |
-
| Training examples |
|
| 51 |
| Test examples | 30,000 |
|
|
|
|
| 52 |
| Random state | 42 |
|
| 53 |
| Optimal threshold | 0.3714 |
|
| 54 |
| Total features | 3,024 (3,000 TF-IDF + 24 metadata) |
|
|
@@ -68,6 +69,7 @@ A voting ensemble classifier (Random Forest + Logistic Regression + Linear SVM w
|
|
| 68 |
|
| 69 |
- [VoltageVagabond/spam-email-dataset](https://huggingface.co/datasets/VoltageVagabond/spam-email-dataset)
|
| 70 |
- Sources: Kaggle 190K spam dataset (stratified-sampled to 100K) + GitHub email-dataset
|
|
|
|
| 71 |
|
| 72 |
## Files
|
| 73 |
|
|
@@ -105,7 +107,7 @@ print(f"{label} ({proba:.1%} confidence)")
|
|
| 105 |
|
| 106 |
## Interactive Demo
|
| 107 |
|
| 108 |
-
- **Live Gradio Space:** [VoltageVagabond/spam-xai-classifier](https://huggingface.co/spaces/VoltageVagabond/spam-xai-classifier)
|
| 109 |
|
| 110 |
## Baseline Random Forest (preserved for comparison)
|
| 111 |
|
|
@@ -149,16 +151,16 @@ It is **not** intended for production spam filtering.
|
|
| 149 |
|-------|-------------|------|
|
| 150 |
| spam-classifier-mlx | Qwen 3.5 0.8B MLX LoRA fine-tune | [VoltageVagabond/spam-classifier-mlx](https://huggingface.co/VoltageVagabond/spam-classifier-mlx) |
|
| 151 |
| spam-classifier-liquid | Liquid AI LFM2.5-1.2B LoRA fine-tune | [VoltageVagabond/spam-classifier-liquid](https://huggingface.co/VoltageVagabond/spam-classifier-liquid) |
|
| 152 |
-
| spam-xai-classifier (Space) | Live Gradio web app for this model | [VoltageVagabond/spam-xai-classifier](https://huggingface.co/spaces/VoltageVagabond/spam-xai-classifier) |
|
| 153 |
|
| 154 |
## Citation
|
| 155 |
|
| 156 |
```bibtex
|
| 157 |
@misc{voltagevagabond2026spamxai,
|
| 158 |
-
title={Spam Email Classifier — sklearn Voting Ensemble with XAI},
|
| 159 |
author={VoltageVagabond},
|
| 160 |
year={2026},
|
| 161 |
-
howpublished={\url{https://huggingface.co/VoltageVagabond/spam-xai-model}},
|
| 162 |
note={ENGT 375 — Applied Machine Learning, Old Dominion University, Spring 2026}
|
| 163 |
}
|
| 164 |
```
|
|
|
|
| 15 |
pipeline_tag: text-classification
|
| 16 |
---
|
| 17 |
|
| 18 |
+
# Spam Email Classifier — sklearn Voting Ensemble with XAI (v2)
|
| 19 |
|
| 20 |
**ENGT 375 — Applied Machine Learning | Spring 2026 | Old Dominion University**
|
| 21 |
|
| 22 |
> **Disclaimer:** This model was created as a student project for Applied Machine Learning at ODU. It is intended for **educational and research purposes only** and should not be used as a sole spam/phishing filter in production. Classification accuracy may vary, and the model may produce incorrect or misleading results. Always use established email security tools for real-world spam filtering.
|
| 23 |
|
| 24 |
+
A voting ensemble classifier (Random Forest + Logistic Regression + Linear SVM with calibration) for spam email detection, with LIME, SHAP, and ELI5 explainability support. This is the **v2** model — a beginner-friendly course-facing rewrite of the original `spam-xai-project`, retrained on the full 99,999-sample corpus. The Gradio workflow was previously merged in from the now-retired `spam-classifier-gradio` project.
|
| 25 |
|
| 26 |
## Model Details
|
| 27 |
|
|
|
|
| 38 |
|
| 39 |
| Model | Accuracy | Precision | Recall | F1 Score |
|
| 40 |
|-------|----------|-----------|--------|----------|
|
| 41 |
+
| **VotingEnsemble (deployed)** | **0.9740** | **0.9661** | **0.9795** | **0.9727** |
|
| 42 |
+
| RandomForest | 0.9775 | 0.9757 | 0.9767 | 0.9762 |
|
| 43 |
+
| LogisticRegression | 0.9657 | 0.9552 | 0.9732 | 0.9641 |
|
| 44 |
+
| SVM | 0.9689 | 0.9625 | 0.9721 | 0.9673 |
|
| 45 |
|
| 46 |
## Training Details
|
| 47 |
|
| 48 |
| Parameter | Value |
|
| 49 |
|-----------|-------|
|
| 50 |
+
| Training examples | 69,999 |
|
| 51 |
| Test examples | 30,000 |
|
| 52 |
+
| Total samples | 99,999 (full dataset retrain) |
|
| 53 |
| Random state | 42 |
|
| 54 |
| Optimal threshold | 0.3714 |
|
| 55 |
| Total features | 3,024 (3,000 TF-IDF + 24 metadata) |
|
|
|
|
| 69 |
|
| 70 |
- [VoltageVagabond/spam-email-dataset](https://huggingface.co/datasets/VoltageVagabond/spam-email-dataset)
|
| 71 |
- Sources: Kaggle 190K spam dataset (stratified-sampled to 100K) + GitHub email-dataset
|
| 72 |
+
- v2 trains on the **full** 99,999-sample corpus (no subsampling), split 69,999 train / 30,000 test
|
| 73 |
|
| 74 |
## Files
|
| 75 |
|
|
|
|
| 107 |
|
| 108 |
## Interactive Demo
|
| 109 |
|
| 110 |
+
- **Live Gradio Space (v2):** [VoltageVagabond/spam-xai-classifier-v2](https://huggingface.co/spaces/VoltageVagabond/spam-xai-classifier-v2)
|
| 111 |
|
| 112 |
## Baseline Random Forest (preserved for comparison)
|
| 113 |
|
|
|
|
| 151 |
|-------|-------------|------|
|
| 152 |
| spam-classifier-mlx | Qwen 3.5 0.8B MLX LoRA fine-tune | [VoltageVagabond/spam-classifier-mlx](https://huggingface.co/VoltageVagabond/spam-classifier-mlx) |
|
| 153 |
| spam-classifier-liquid | Liquid AI LFM2.5-1.2B LoRA fine-tune | [VoltageVagabond/spam-classifier-liquid](https://huggingface.co/VoltageVagabond/spam-classifier-liquid) |
|
| 154 |
+
| spam-xai-classifier-v2 (Space) | Live Gradio web app for this model | [VoltageVagabond/spam-xai-classifier-v2](https://huggingface.co/spaces/VoltageVagabond/spam-xai-classifier-v2) |
|
| 155 |
|
| 156 |
## Citation
|
| 157 |
|
| 158 |
```bibtex
|
| 159 |
@misc{voltagevagabond2026spamxai,
|
| 160 |
+
title={Spam Email Classifier — sklearn Voting Ensemble with XAI (v2)},
|
| 161 |
author={VoltageVagabond},
|
| 162 |
year={2026},
|
| 163 |
+
howpublished={\url{https://huggingface.co/VoltageVagabond/spam-xai-model-v2}},
|
| 164 |
note={ENGT 375 — Applied Machine Learning, Old Dominion University, Spring 2026}
|
| 165 |
}
|
| 166 |
```
|
README.md
CHANGED
|
@@ -19,7 +19,7 @@ tags:
|
|
| 19 |
- nlp
|
| 20 |
- explainable-ai
|
| 21 |
models:
|
| 22 |
-
- VoltageVagabond/spam-xai-model
|
| 23 |
- VoltageVagabond/spam-classifier-mlx
|
| 24 |
- VoltageVagabond/spam-classifier-liquid
|
| 25 |
datasets:
|
|
@@ -34,6 +34,8 @@ datasets:
|
|
| 34 |
|
| 35 |
A Gradio web app that classifies emails as spam or ham and provides explainable AI (XAI) insights using three different methods (LIME, SHAP, and ELI5).
|
| 36 |
|
|
|
|
|
|
|
| 37 |
## Features
|
| 38 |
|
| 39 |
- Paste any email and get an instant spam/ham prediction
|
|
@@ -64,7 +66,7 @@ jupyter notebook notebooks/spam_classifier_xai_student.ipynb
|
|
| 64 |
You can also double-click any of these `.command` files in Finder:
|
| 65 |
- `launch-gradio.command` — opens the Gradio web UI in your browser
|
| 66 |
- `launch-notebook.command` — opens the student notebook in Jupyter
|
| 67 |
-
- `launch-app.command` — opens the legacy Streamlit app
|
| 68 |
- `retrain-fast.command` — quick retrain (~2-5 min, single RF, no grid search)
|
| 69 |
- `retrain-full.command` — full retrain (~15-30 min, voting ensemble + grid search)
|
| 70 |
|
|
@@ -80,16 +82,16 @@ The retrain script reads accumulated user corrections from `data/feedback/feedba
|
|
| 80 |
|
| 81 |
## Model
|
| 82 |
|
| 83 |
-
**Voting ensemble** (Random Forest + Logistic Regression + Linear SVM with calibration) trained on the Kaggle 100K spam dataset + GitHub email-dataset, using 3,000 TF-IDF features + 24 hand-crafted metadata features.
|
| 84 |
|
| 85 |
| Model | Accuracy | F1 Score |
|
| 86 |
|-------|----------|----------|
|
| 87 |
-
| Random Forest | 97.
|
| 88 |
-
| Logistic Regression | 96.
|
| 89 |
-
| SVM (LinearSVC + calibration) | 96.
|
| 90 |
-
| **VotingClassifier (deployed)** | **97.
|
| 91 |
|
| 92 |
-
Optimal classification threshold: 0.3714 (targeting 99% ham precision).
|
| 93 |
|
| 94 |
## Notebooks
|
| 95 |
|
|
@@ -126,5 +128,5 @@ If you reference this work academically:
|
|
| 126 |
```
|
| 127 |
Balfour, D. (2026). Spam Email Classifier with Explainable AI.
|
| 128 |
ENGT 375 Applied Machine Learning project, Old Dominion University, Spring 2026.
|
| 129 |
-
https://huggingface.co/spaces/VoltageVagabond/spam-xai-classifier
|
| 130 |
```
|
|
|
|
| 19 |
- nlp
|
| 20 |
- explainable-ai
|
| 21 |
models:
|
| 22 |
+
- VoltageVagabond/spam-xai-model-v2
|
| 23 |
- VoltageVagabond/spam-classifier-mlx
|
| 24 |
- VoltageVagabond/spam-classifier-liquid
|
| 25 |
datasets:
|
|
|
|
| 34 |
|
| 35 |
A Gradio web app that classifies emails as spam or ham and provides explainable AI (XAI) insights using three different methods (LIME, SHAP, and ELI5).
|
| 36 |
|
| 37 |
+
**What's new in v2:** beginner-friendly notebook refactor (explicit for-loops over comprehensions, no decorators, no premature abstractions), lecture-style charts in the student teaching notebook, a separate `app_student.py` / `utils_student.py` / `retrain_student.py` track for course readers, and a fresh full-dataset retrain (99,999 samples — 69,999 train / 30,000 test) producing a re-tuned classification threshold of 0.3714. v2 is deployed as its own HuggingFace Space at `VoltageVagabond/spam-xai-classifier-v2`.
|
| 38 |
+
|
| 39 |
## Features
|
| 40 |
|
| 41 |
- Paste any email and get an instant spam/ham prediction
|
|
|
|
| 66 |
You can also double-click any of these `.command` files in Finder:
|
| 67 |
- `launch-gradio.command` — opens the Gradio web UI in your browser
|
| 68 |
- `launch-notebook.command` — opens the student notebook in Jupyter
|
| 69 |
+
- `launch-app.command` — opens the legacy Streamlit app (kept for reference; the active UI is `launch-gradio.command`)
|
| 70 |
- `retrain-fast.command` — quick retrain (~2-5 min, single RF, no grid search)
|
| 71 |
- `retrain-full.command` — full retrain (~15-30 min, voting ensemble + grid search)
|
| 72 |
|
|
|
|
| 82 |
|
| 83 |
## Model
|
| 84 |
|
| 85 |
+
**Voting ensemble** (Random Forest + Logistic Regression + Linear SVM with calibration) trained on the full Kaggle 100K spam dataset + GitHub email-dataset (99,999 samples total: 69,999 train / 30,000 test), using 3,000 TF-IDF features + 24 hand-crafted metadata features.
|
| 86 |
|
| 87 |
| Model | Accuracy | F1 Score |
|
| 88 |
|-------|----------|----------|
|
| 89 |
+
| Random Forest | 97.75% | 0.976 |
|
| 90 |
+
| Logistic Regression | 96.57% | 0.964 |
|
| 91 |
+
| SVM (LinearSVC + calibration) | 96.89% | 0.967 |
|
| 92 |
+
| **VotingClassifier (deployed)** | **97.40%** | **0.973** |
|
| 93 |
|
| 94 |
+
Optimal classification threshold: 0.3714 (targeting 99% ham precision; value read from `models/optimal_threshold.joblib` written by `train_ensemble.py`).
|
| 95 |
|
| 96 |
## Notebooks
|
| 97 |
|
|
|
|
| 128 |
```
|
| 129 |
Balfour, D. (2026). Spam Email Classifier with Explainable AI.
|
| 130 |
ENGT 375 Applied Machine Learning project, Old Dominion University, Spring 2026.
|
| 131 |
+
https://huggingface.co/spaces/VoltageVagabond/spam-xai-classifier-v2
|
| 132 |
```
|
figures/class_distribution.png
CHANGED
|
|
figures/confusion_matrix.png
CHANGED
|
|
figures/eli5_global_importance.png
ADDED
|
figures/eli5_global_weights.html
CHANGED
|
@@ -1,357 +1,357 @@
|
|
| 1 |
-
|
| 2 |
-
<style>
|
| 3 |
-
table.eli5-weights tr:hover {
|
| 4 |
-
filter: brightness(85%);
|
| 5 |
-
}
|
| 6 |
-
</style>
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
<p>Explained as: feature importances</p>
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
<pre>
|
| 30 |
-
Random forest feature importances; values are numbers 0 <= x <= 1;
|
| 31 |
-
all values sum to 1.
|
| 32 |
-
</pre>
|
| 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 |
-
<table class="eli5-weights eli5-feature-importances" style="border-collapse: collapse; border: none; margin-top: 0em; table-layout: auto;">
|
| 80 |
-
<thead>
|
| 81 |
-
<tr style="border: none;">
|
| 82 |
-
<th style="padding: 0 1em 0 0.5em; text-align: right; border: none;">Weight</th>
|
| 83 |
-
<th style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">Feature</th>
|
| 84 |
-
</tr>
|
| 85 |
-
</thead>
|
| 86 |
-
<tbody>
|
| 87 |
-
|
| 88 |
-
<tr style="background-color: hsl(120, 100.00%, 80.00%); border: none;">
|
| 89 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 90 |
-
0.
|
| 91 |
-
|
| 92 |
-
± 0.
|
| 93 |
-
|
| 94 |
-
</td>
|
| 95 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 96 |
-
|
| 97 |
-
</td>
|
| 98 |
-
</tr>
|
| 99 |
-
|
| 100 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 101 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 102 |
-
0.
|
| 103 |
-
|
| 104 |
-
± 0.
|
| 105 |
-
|
| 106 |
-
</td>
|
| 107 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 108 |
-
click
|
| 109 |
-
</td>
|
| 110 |
-
</tr>
|
| 111 |
-
|
| 112 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 113 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 114 |
-
0.
|
| 115 |
-
|
| 116 |
-
± 0.
|
| 117 |
-
|
| 118 |
-
</td>
|
| 119 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 120 |
-
|
| 121 |
-
</td>
|
| 122 |
-
</tr>
|
| 123 |
-
|
| 124 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 125 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 126 |
-
0.
|
| 127 |
-
|
| 128 |
-
± 0.
|
| 129 |
-
|
| 130 |
-
</td>
|
| 131 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 132 |
-
remov
|
| 133 |
-
</td>
|
| 134 |
-
</tr>
|
| 135 |
-
|
| 136 |
-
<tr style="background-color: hsl(120, 100.00%, 85.
|
| 137 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 138 |
-
0.0303
|
| 139 |
-
|
| 140 |
-
± 0.
|
| 141 |
-
|
| 142 |
-
</td>
|
| 143 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 144 |
-
capitalization_ratio
|
| 145 |
-
</td>
|
| 146 |
-
</tr>
|
| 147 |
-
|
| 148 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 149 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 150 |
-
0.
|
| 151 |
-
|
| 152 |
-
± 0.
|
| 153 |
-
|
| 154 |
-
</td>
|
| 155 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 156 |
-
|
| 157 |
-
</td>
|
| 158 |
-
</tr>
|
| 159 |
-
|
| 160 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 161 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 162 |
-
0.
|
| 163 |
-
|
| 164 |
-
± 0.
|
| 165 |
-
|
| 166 |
-
</td>
|
| 167 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 168 |
-
|
| 169 |
-
</td>
|
| 170 |
-
</tr>
|
| 171 |
-
|
| 172 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 173 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 174 |
-
0.
|
| 175 |
-
|
| 176 |
-
± 0.
|
| 177 |
-
|
| 178 |
-
</td>
|
| 179 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 180 |
-
|
| 181 |
-
</td>
|
| 182 |
-
</tr>
|
| 183 |
-
|
| 184 |
-
<tr style="background-color: hsl(120, 100.00%, 90.
|
| 185 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 186 |
-
0.
|
| 187 |
-
|
| 188 |
-
± 0.
|
| 189 |
-
|
| 190 |
-
</td>
|
| 191 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 192 |
-
|
| 193 |
-
</td>
|
| 194 |
-
</tr>
|
| 195 |
-
|
| 196 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 197 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 198 |
-
0.
|
| 199 |
-
|
| 200 |
-
± 0.
|
| 201 |
-
|
| 202 |
-
</td>
|
| 203 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 204 |
-
|
| 205 |
-
</td>
|
| 206 |
-
</tr>
|
| 207 |
-
|
| 208 |
-
<tr style="background-color: hsl(120, 100.00%, 91.16%); border: none;">
|
| 209 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 210 |
-
0.
|
| 211 |
-
|
| 212 |
-
± 0.
|
| 213 |
-
|
| 214 |
-
</td>
|
| 215 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 216 |
-
|
| 217 |
-
</td>
|
| 218 |
-
</tr>
|
| 219 |
-
|
| 220 |
-
<tr style="background-color: hsl(120, 100.00%, 91.
|
| 221 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 222 |
-
0.
|
| 223 |
-
|
| 224 |
-
± 0.
|
| 225 |
-
|
| 226 |
-
</td>
|
| 227 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 228 |
-
|
| 229 |
-
</td>
|
| 230 |
-
</tr>
|
| 231 |
-
|
| 232 |
-
<tr style="background-color: hsl(120, 100.00%, 91.
|
| 233 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 234 |
-
0.
|
| 235 |
-
|
| 236 |
-
± 0.
|
| 237 |
-
|
| 238 |
-
</td>
|
| 239 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 240 |
-
|
| 241 |
-
</td>
|
| 242 |
-
</tr>
|
| 243 |
-
|
| 244 |
-
<tr style="background-color: hsl(120, 100.00%, 92.
|
| 245 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 246 |
-
0.
|
| 247 |
-
|
| 248 |
-
± 0.
|
| 249 |
-
|
| 250 |
-
</td>
|
| 251 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 252 |
-
|
| 253 |
-
</td>
|
| 254 |
-
</tr>
|
| 255 |
-
|
| 256 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 257 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 258 |
-
0.
|
| 259 |
-
|
| 260 |
-
± 0.
|
| 261 |
-
|
| 262 |
-
</td>
|
| 263 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 264 |
-
|
| 265 |
-
</td>
|
| 266 |
-
</tr>
|
| 267 |
-
|
| 268 |
-
<tr style="background-color: hsl(120, 100.00%, 93.
|
| 269 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 270 |
-
0.
|
| 271 |
-
|
| 272 |
-
± 0.
|
| 273 |
-
|
| 274 |
-
</td>
|
| 275 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 276 |
-
|
| 277 |
-
</td>
|
| 278 |
-
</tr>
|
| 279 |
-
|
| 280 |
-
<tr style="background-color: hsl(120, 100.00%, 93.
|
| 281 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 282 |
-
0.
|
| 283 |
-
|
| 284 |
-
± 0.
|
| 285 |
-
|
| 286 |
-
</td>
|
| 287 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 288 |
-
|
| 289 |
-
</td>
|
| 290 |
-
</tr>
|
| 291 |
-
|
| 292 |
-
<tr style="background-color: hsl(120, 100.00%,
|
| 293 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 294 |
-
0.
|
| 295 |
-
|
| 296 |
-
± 0.
|
| 297 |
-
|
| 298 |
-
</td>
|
| 299 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 300 |
-
|
| 301 |
-
</td>
|
| 302 |
-
</tr>
|
| 303 |
-
|
| 304 |
-
<tr style="background-color: hsl(120, 100.00%, 94.
|
| 305 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 306 |
-
0.
|
| 307 |
-
|
| 308 |
-
± 0.
|
| 309 |
-
|
| 310 |
-
</td>
|
| 311 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 312 |
-
|
| 313 |
-
</td>
|
| 314 |
-
</tr>
|
| 315 |
-
|
| 316 |
-
<tr style="background-color: hsl(120, 100.00%, 94.
|
| 317 |
-
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 318 |
-
0.
|
| 319 |
-
|
| 320 |
-
± 0.
|
| 321 |
-
|
| 322 |
-
</td>
|
| 323 |
-
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 324 |
-
|
| 325 |
-
</td>
|
| 326 |
-
</tr>
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
<tr style="background-color: hsl(120, 100.00%, 94.
|
| 331 |
-
<td colspan="2" style="padding: 0 0.5em 0 0.5em; text-align: center; border: none; white-space: nowrap;">
|
| 332 |
-
<i>… 1004 more …</i>
|
| 333 |
-
</td>
|
| 334 |
-
</tr>
|
| 335 |
-
|
| 336 |
-
|
| 337 |
-
</tbody>
|
| 338 |
-
</table>
|
| 339 |
-
|
| 340 |
-
|
| 341 |
-
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
|
| 345 |
-
|
| 346 |
-
|
| 347 |
-
|
| 348 |
-
|
| 349 |
-
|
| 350 |
-
|
| 351 |
-
|
| 352 |
-
|
| 353 |
-
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
|
|
|
|
| 1 |
+
|
| 2 |
+
<style>
|
| 3 |
+
table.eli5-weights tr:hover {
|
| 4 |
+
filter: brightness(85%);
|
| 5 |
+
}
|
| 6 |
+
</style>
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
<p>Explained as: feature importances</p>
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
<pre>
|
| 30 |
+
Random forest feature importances; values are numbers 0 <= x <= 1;
|
| 31 |
+
all values sum to 1.
|
| 32 |
+
</pre>
|
| 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 |
+
<table class="eli5-weights eli5-feature-importances" style="border-collapse: collapse; border: none; margin-top: 0em; table-layout: auto;">
|
| 80 |
+
<thead>
|
| 81 |
+
<tr style="border: none;">
|
| 82 |
+
<th style="padding: 0 1em 0 0.5em; text-align: right; border: none;">Weight</th>
|
| 83 |
+
<th style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">Feature</th>
|
| 84 |
+
</tr>
|
| 85 |
+
</thead>
|
| 86 |
+
<tbody>
|
| 87 |
+
|
| 88 |
+
<tr style="background-color: hsl(120, 100.00%, 80.00%); border: none;">
|
| 89 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 90 |
+
0.0467
|
| 91 |
+
|
| 92 |
+
± 0.1170
|
| 93 |
+
|
| 94 |
+
</td>
|
| 95 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 96 |
+
html_tag_count
|
| 97 |
+
</td>
|
| 98 |
+
</tr>
|
| 99 |
+
|
| 100 |
+
<tr style="background-color: hsl(120, 100.00%, 80.12%); border: none;">
|
| 101 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 102 |
+
0.0463
|
| 103 |
+
|
| 104 |
+
± 0.1480
|
| 105 |
+
|
| 106 |
+
</td>
|
| 107 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 108 |
+
click
|
| 109 |
+
</td>
|
| 110 |
+
</tr>
|
| 111 |
+
|
| 112 |
+
<tr style="background-color: hsl(120, 100.00%, 80.47%); border: none;">
|
| 113 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 114 |
+
0.0451
|
| 115 |
+
|
| 116 |
+
± 0.1257
|
| 117 |
+
|
| 118 |
+
</td>
|
| 119 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 120 |
+
exclamation_density
|
| 121 |
+
</td>
|
| 122 |
+
</tr>
|
| 123 |
+
|
| 124 |
+
<tr style="background-color: hsl(120, 100.00%, 83.70%); border: none;">
|
| 125 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 126 |
+
0.0348
|
| 127 |
+
|
| 128 |
+
± 0.1131
|
| 129 |
+
|
| 130 |
+
</td>
|
| 131 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 132 |
+
remov
|
| 133 |
+
</td>
|
| 134 |
+
</tr>
|
| 135 |
+
|
| 136 |
+
<tr style="background-color: hsl(120, 100.00%, 85.22%); border: none;">
|
| 137 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 138 |
+
0.0303
|
| 139 |
+
|
| 140 |
+
± 0.0927
|
| 141 |
+
|
| 142 |
+
</td>
|
| 143 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 144 |
+
capitalization_ratio
|
| 145 |
+
</td>
|
| 146 |
+
</tr>
|
| 147 |
+
|
| 148 |
+
<tr style="background-color: hsl(120, 100.00%, 87.84%); border: none;">
|
| 149 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 150 |
+
0.0229
|
| 151 |
+
|
| 152 |
+
± 0.0888
|
| 153 |
+
|
| 154 |
+
</td>
|
| 155 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 156 |
+
cta_to_info_ratio
|
| 157 |
+
</td>
|
| 158 |
+
</tr>
|
| 159 |
+
|
| 160 |
+
<tr style="background-color: hsl(120, 100.00%, 88.12%); border: none;">
|
| 161 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 162 |
+
0.0222
|
| 163 |
+
|
| 164 |
+
± 0.0814
|
| 165 |
+
|
| 166 |
+
</td>
|
| 167 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 168 |
+
pleas
|
| 169 |
+
</td>
|
| 170 |
+
</tr>
|
| 171 |
+
|
| 172 |
+
<tr style="background-color: hsl(120, 100.00%, 89.71%); border: none;">
|
| 173 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 174 |
+
0.0181
|
| 175 |
+
|
| 176 |
+
± 0.0557
|
| 177 |
+
|
| 178 |
+
</td>
|
| 179 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 180 |
+
caps_word_ratio
|
| 181 |
+
</td>
|
| 182 |
+
</tr>
|
| 183 |
+
|
| 184 |
+
<tr style="background-color: hsl(120, 100.00%, 90.65%); border: none;">
|
| 185 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 186 |
+
0.0158
|
| 187 |
+
|
| 188 |
+
± 0.0593
|
| 189 |
+
|
| 190 |
+
</td>
|
| 191 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 192 |
+
nbsp
|
| 193 |
+
</td>
|
| 194 |
+
</tr>
|
| 195 |
+
|
| 196 |
+
<tr style="background-color: hsl(120, 100.00%, 90.67%); border: none;">
|
| 197 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 198 |
+
0.0157
|
| 199 |
+
|
| 200 |
+
± 0.0504
|
| 201 |
+
|
| 202 |
+
</td>
|
| 203 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 204 |
+
wrote
|
| 205 |
+
</td>
|
| 206 |
+
</tr>
|
| 207 |
+
|
| 208 |
+
<tr style="background-color: hsl(120, 100.00%, 91.16%); border: none;">
|
| 209 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 210 |
+
0.0145
|
| 211 |
+
|
| 212 |
+
± 0.0636
|
| 213 |
+
|
| 214 |
+
</td>
|
| 215 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 216 |
+
receiv
|
| 217 |
+
</td>
|
| 218 |
+
</tr>
|
| 219 |
+
|
| 220 |
+
<tr style="background-color: hsl(120, 100.00%, 91.21%); border: none;">
|
| 221 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 222 |
+
0.0144
|
| 223 |
+
|
| 224 |
+
± 0.0504
|
| 225 |
+
|
| 226 |
+
</td>
|
| 227 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 228 |
+
free
|
| 229 |
+
</td>
|
| 230 |
+
</tr>
|
| 231 |
+
|
| 232 |
+
<tr style="background-color: hsl(120, 100.00%, 91.32%); border: none;">
|
| 233 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 234 |
+
0.0142
|
| 235 |
+
|
| 236 |
+
± 0.0568
|
| 237 |
+
|
| 238 |
+
</td>
|
| 239 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 240 |
+
offer
|
| 241 |
+
</td>
|
| 242 |
+
</tr>
|
| 243 |
+
|
| 244 |
+
<tr style="background-color: hsl(120, 100.00%, 92.68%); border: none;">
|
| 245 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 246 |
+
0.0111
|
| 247 |
+
|
| 248 |
+
± 0.0312
|
| 249 |
+
|
| 250 |
+
</td>
|
| 251 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 252 |
+
avg_sentence_length
|
| 253 |
+
</td>
|
| 254 |
+
</tr>
|
| 255 |
+
|
| 256 |
+
<tr style="background-color: hsl(120, 100.00%, 92.92%); border: none;">
|
| 257 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 258 |
+
0.0106
|
| 259 |
+
|
| 260 |
+
± 0.0516
|
| 261 |
+
|
| 262 |
+
</td>
|
| 263 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 264 |
+
pleas click
|
| 265 |
+
</td>
|
| 266 |
+
</tr>
|
| 267 |
+
|
| 268 |
+
<tr style="background-color: hsl(120, 100.00%, 93.50%); border: none;">
|
| 269 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 270 |
+
0.0094
|
| 271 |
+
|
| 272 |
+
± 0.0473
|
| 273 |
+
|
| 274 |
+
</td>
|
| 275 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 276 |
+
spam_phrase_count
|
| 277 |
+
</td>
|
| 278 |
+
</tr>
|
| 279 |
+
|
| 280 |
+
<tr style="background-color: hsl(120, 100.00%, 93.73%); border: none;">
|
| 281 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 282 |
+
0.0089
|
| 283 |
+
|
| 284 |
+
± 0.0287
|
| 285 |
+
|
| 286 |
+
</td>
|
| 287 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 288 |
+
email_length
|
| 289 |
+
</td>
|
| 290 |
+
</tr>
|
| 291 |
+
|
| 292 |
+
<tr style="background-color: hsl(120, 100.00%, 94.42%); border: none;">
|
| 293 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 294 |
+
0.0075
|
| 295 |
+
|
| 296 |
+
± 0.0359
|
| 297 |
+
|
| 298 |
+
</td>
|
| 299 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 300 |
+
list pleas
|
| 301 |
+
</td>
|
| 302 |
+
</tr>
|
| 303 |
+
|
| 304 |
+
<tr style="background-color: hsl(120, 100.00%, 94.47%); border: none;">
|
| 305 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 306 |
+
0.0074
|
| 307 |
+
|
| 308 |
+
± 0.0351
|
| 309 |
+
|
| 310 |
+
</td>
|
| 311 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 312 |
+
guarante
|
| 313 |
+
</td>
|
| 314 |
+
</tr>
|
| 315 |
+
|
| 316 |
+
<tr style="background-color: hsl(120, 100.00%, 94.75%); border: none;">
|
| 317 |
+
<td style="padding: 0 1em 0 0.5em; text-align: right; border: none;">
|
| 318 |
+
0.0069
|
| 319 |
+
|
| 320 |
+
± 0.0270
|
| 321 |
+
|
| 322 |
+
</td>
|
| 323 |
+
<td style="padding: 0 0.5em 0 0.5em; text-align: left; border: none;">
|
| 324 |
+
credit
|
| 325 |
+
</td>
|
| 326 |
+
</tr>
|
| 327 |
+
|
| 328 |
+
|
| 329 |
+
|
| 330 |
+
<tr style="background-color: hsl(120, 100.00%, 94.75%); border: none;">
|
| 331 |
+
<td colspan="2" style="padding: 0 0.5em 0 0.5em; text-align: center; border: none; white-space: nowrap;">
|
| 332 |
+
<i>… 1004 more …</i>
|
| 333 |
+
</td>
|
| 334 |
+
</tr>
|
| 335 |
+
|
| 336 |
+
|
| 337 |
+
</tbody>
|
| 338 |
+
</table>
|
| 339 |
+
|
| 340 |
+
|
| 341 |
+
|
| 342 |
+
|
| 343 |
+
|
| 344 |
+
|
| 345 |
+
|
| 346 |
+
|
| 347 |
+
|
| 348 |
+
|
| 349 |
+
|
| 350 |
+
|
| 351 |
+
|
| 352 |
+
|
| 353 |
+
|
| 354 |
+
|
| 355 |
+
|
| 356 |
+
|
| 357 |
+
|
figures/email_length_distributions.png
CHANGED
|
|
figures/feature_reduction_experiment.png
CHANGED
|
|
figures/lime_explanations.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
figures/lime_global_importance.png
ADDED
|
figures/roc_curve.png
CHANGED
|
|
figures/shap_dependence_plots.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
figures/shap_global_importance.png
ADDED
|
figures/shap_local_true_negative_ham.png
CHANGED
|
|
figures/shap_local_true_positive_spam.png
CHANGED
|
|
figures/shap_summary_beeswarm.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
figures/top_words.png
CHANGED
|
|
figures/word_clouds.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
figures/xai_execution_time.png
CHANGED
|
|
figures/xai_feature_comparison.png
CHANGED
|
|
notebooks/portable_student_notebook/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Portable Student Notebook — Spam Classification + XAI
|
| 2 |
+
|
| 3 |
+
Self-contained bundle for the ENGT 375 spam classification notebook.
|
| 4 |
+
Everything the notebook needs is in this folder.
|
| 5 |
+
|
| 6 |
+
## How to run
|
| 7 |
+
|
| 8 |
+
1. Install Python 3.11 and Jupyter (e.g. via Anaconda or `pip install jupyter`).
|
| 9 |
+
2. Open a terminal in this folder and launch Jupyter:
|
| 10 |
+
|
| 11 |
+
```
|
| 12 |
+
jupyter notebook notebooks/spam_classifier_xai_student.ipynb
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
3. Run the very first code cell (**Section 0 — Install Required Packages**).
|
| 16 |
+
It uses `%pip install` to add every required package into the Jupyter kernel
|
| 17 |
+
you're using. Wait for it to finish.
|
| 18 |
+
4. **Kernel → Restart** (important — so Python re-loads the newly-installed packages).
|
| 19 |
+
5. Run the notebook from the top.
|
| 20 |
+
|
| 21 |
+
## What's in this folder
|
| 22 |
+
|
| 23 |
+
| Path | What it is |
|
| 24 |
+
|---|---|
|
| 25 |
+
| `notebooks/spam_classifier_xai_student.ipynb` | The teaching notebook |
|
| 26 |
+
| `utils.py` | Helper functions the notebook imports (preprocessing, XAI plots, feature reduction) |
|
| 27 |
+
| `requirements.txt` | Full list of Python packages used across the project |
|
| 28 |
+
| `data/raw/{easy_ham, easy_ham_2, hard_ham, spam, spam_2}/` | ~49 MB of SpamAssassin email corpora |
|
| 29 |
+
| `data/processed/` | Empty — the notebook writes `emails_raw.csv` here on first run |
|
| 30 |
+
| `models/` | Empty — the notebook writes the trained Random Forest, TF-IDF vectorizer, etc. here |
|
| 31 |
+
| `figures/` | Empty — the notebook writes all charts here (PNGs) |
|
| 32 |
+
|
| 33 |
+
## Notes
|
| 34 |
+
|
| 35 |
+
- First-run training takes a few minutes (grid search over Random Forest
|
| 36 |
+
hyperparameters on ~99K emails). Subsequent runs hit cached artifacts.
|
| 37 |
+
- NLTK downloads (stopwords, punkt) happen automatically on first run.
|
| 38 |
+
- No internet access is required beyond the initial `%pip install` and the NLTK
|
| 39 |
+
corpora download.
|
notebooks/portable_student_notebook/data/raw/easy_ham/0001.ea7e79d3153e7469e7a9c3e0af6a357e
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 12:36:23 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id D03E543C36
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 07:36:16 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 12:36:16 +0100 (IST)
|
| 10 |
+
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MBYrZ04811 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 12:34:53 +0100
|
| 13 |
+
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
| 14 |
+
listman.redhat.com (Postfix) with ESMTP id 8386540858; Thu, 22 Aug 2002
|
| 15 |
+
07:35:02 -0400 (EDT)
|
| 16 |
+
Delivered-To: [email protected]
|
| 17 |
+
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
| 18 |
+
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 10CF8406D7
|
| 19 |
+
for <[email protected]>; Thu, 22 Aug 2002 07:34:10 -0400
|
| 20 |
+
(EDT)
|
| 21 |
+
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
| 22 |
+
id g7MBY7g11259 for [email protected]; Thu, 22 Aug 2002
|
| 23 |
+
07:34:07 -0400
|
| 24 |
+
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
| 25 |
+
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MBY7Y11255 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 07:34:07 -0400
|
| 27 |
+
Received: from ratree.psu.ac.th ([202.28.97.6]) by mx1.example.com
|
| 28 |
+
(8.11.6/8.11.6) with SMTP id g7MBIhl25223 for <[email protected]>;
|
| 29 |
+
Thu, 22 Aug 2002 07:18:55 -0400
|
| 30 |
+
Received: from delta.cs.mu.OZ.AU (delta.coe.psu.ac.th [172.30.0.98]) by
|
| 31 |
+
ratree.psu.ac.th (8.11.6/8.11.6) with ESMTP id g7MBWel29762;
|
| 32 |
+
Thu, 22 Aug 2002 18:32:40 +0700 (ICT)
|
| 33 |
+
Received: from munnari.OZ.AU (localhost [127.0.0.1]) by delta.cs.mu.OZ.AU
|
| 34 |
+
(8.11.6/8.11.6) with ESMTP id g7MBQPW13260; Thu, 22 Aug 2002 18:26:25
|
| 35 |
+
+0700 (ICT)
|
| 36 |
+
From: Robert Elz <[email protected]>
|
| 37 |
+
To: Chris Garrigues <[email protected]>
|
| 38 |
+
Cc: [email protected]
|
| 39 |
+
Subject: Re: New Sequences Window
|
| 40 |
+
In-Reply-To: <[email protected]>
|
| 41 |
+
References: <[email protected]>
|
| 42 | |
| 43 | |
| 44 | |
| 45 |
+
MIME-Version: 1.0
|
| 46 |
+
Content-Type: text/plain; charset=us-ascii
|
| 47 |
+
Message-Id: <[email protected]>
|
| 48 |
+
X-Loop: [email protected]
|
| 49 |
+
Sender: [email protected]
|
| 50 |
+
Errors-To: [email protected]
|
| 51 |
+
X-Beenthere: [email protected]
|
| 52 |
+
X-Mailman-Version: 2.0.1
|
| 53 |
+
Precedence: bulk
|
| 54 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 55 |
+
List-Post: <mailto:[email protected]>
|
| 56 |
+
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 57 |
+
<mailto:[email protected]?subject=subscribe>
|
| 58 |
+
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
| 59 |
+
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 60 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 61 |
+
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
| 62 |
+
Date: Thu, 22 Aug 2002 18:26:25 +0700
|
| 63 |
+
|
| 64 |
+
Date: Wed, 21 Aug 2002 10:54:46 -0500
|
| 65 |
+
From: Chris Garrigues <[email protected]>
|
| 66 |
+
Message-ID: <[email protected]>
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
| I can't reproduce this error.
|
| 70 |
+
|
| 71 |
+
For me it is very repeatable... (like every time, without fail).
|
| 72 |
+
|
| 73 |
+
This is the debug log of the pick happening ...
|
| 74 |
+
|
| 75 |
+
18:19:03 Pick_It {exec pick +inbox -list -lbrace -lbrace -subject ftp -rbrace -rbrace} {4852-4852 -sequence mercury}
|
| 76 |
+
18:19:03 exec pick +inbox -list -lbrace -lbrace -subject ftp -rbrace -rbrace 4852-4852 -sequence mercury
|
| 77 |
+
18:19:04 Ftoc_PickMsgs {{1 hit}}
|
| 78 |
+
18:19:04 Marking 1 hits
|
| 79 |
+
18:19:04 tkerror: syntax error in expression "int ...
|
| 80 |
+
|
| 81 |
+
Note, if I run the pick command by hand ...
|
| 82 |
+
|
| 83 |
+
delta$ pick +inbox -list -lbrace -lbrace -subject ftp -rbrace -rbrace 4852-4852 -sequence mercury
|
| 84 |
+
1 hit
|
| 85 |
+
|
| 86 |
+
That's where the "1 hit" comes from (obviously). The version of nmh I'm
|
| 87 |
+
using is ...
|
| 88 |
+
|
| 89 |
+
delta$ pick -version
|
| 90 |
+
pick -- nmh-1.0.4 [compiled on fuchsia.cs.mu.OZ.AU at Sun Mar 17 14:55:56 ICT 2002]
|
| 91 |
+
|
| 92 |
+
And the relevant part of my .mh_profile ...
|
| 93 |
+
|
| 94 |
+
delta$ mhparam pick
|
| 95 |
+
-seq sel -list
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
Since the pick command works, the sequence (actually, both of them, the
|
| 99 |
+
one that's explicit on the command line, from the search popup, and the
|
| 100 |
+
one that comes from .mh_profile) do get created.
|
| 101 |
+
|
| 102 |
+
kre
|
| 103 |
+
|
| 104 |
+
ps: this is still using the version of the code form a day ago, I haven't
|
| 105 |
+
been able to reach the cvs repository today (local routing issue I think).
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
|
| 109 |
+
_______________________________________________
|
| 110 |
+
Exmh-workers mailing list
|
| 111 | |
| 112 |
+
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
| 113 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0002.b3120c4bcbf3101e661161ee7efcb8bf
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 12:46:39 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id BE12E43C34
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 07:46:38 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 12:46:38 +0100 (IST)
|
| 10 |
+
Received: from n20.grp.scd.yahoo.com (n20.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.76]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7MBkTZ05087 for <[email protected]>; Thu, 22 Aug 2002 12:46:29 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52726-1030016790-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.196] by n20.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 11:46:30 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 11:46:29 -0000
|
| 19 |
+
Received: (qmail 11764 invoked from network); 22 Aug 2002 11:46:29 -0000
|
| 20 |
+
Received: from unknown (66.218.66.217) by m3.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 11:46:29 -0000
|
| 22 |
+
Received: from unknown (HELO mailgateway.cursor-system.com) (62.189.7.27)
|
| 23 |
+
by mta2.grp.scd.yahoo.com with SMTP; 22 Aug 2002 11:46:29 -0000
|
| 24 |
+
Received: from exchange1.cps.local (unverified) by
|
| 25 |
+
mailgateway.cursor-system.com (Content Technologies SMTPRS 4.2.10) with
|
| 26 |
+
ESMTP id <[email protected]> for
|
| 27 |
+
<[email protected]>; Thu, 22 Aug 2002 13:14:10 +0100
|
| 28 |
+
Received: by exchange1.cps.local with Internet Mail Service (5.5.2653.19)
|
| 29 |
+
id <PXX6AT23>; Thu, 22 Aug 2002 12:46:27 +0100
|
| 30 |
+
Message-Id: <[email protected]>
|
| 31 |
+
To: "'[email protected]'" <[email protected]>
|
| 32 |
+
X-Mailer: Internet Mail Service (5.5.2653.19)
|
| 33 |
+
X-Egroups-From: Steve Burt <[email protected]>
|
| 34 |
+
From: Steve Burt <[email protected]>
|
| 35 |
+
X-Yahoo-Profile: pyruse
|
| 36 |
+
MIME-Version: 1.0
|
| 37 |
+
Mailing-List: list [email protected]; contact
|
| 38 | |
| 39 |
+
Delivered-To: mailing list [email protected]
|
| 40 |
+
Precedence: bulk
|
| 41 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 42 |
+
Date: Thu, 22 Aug 2002 12:46:18 +0100
|
| 43 |
+
Subject: [zzzzteana] RE: Alexander
|
| 44 |
+
Reply-To: [email protected]
|
| 45 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 46 |
+
Content-Transfer-Encoding: 7bit
|
| 47 |
+
|
| 48 |
+
Martin A posted:
|
| 49 |
+
Tassos Papadopoulos, the Greek sculptor behind the plan, judged that the
|
| 50 |
+
limestone of Mount Kerdylio, 70 miles east of Salonika and not far from the
|
| 51 |
+
Mount Athos monastic community, was ideal for the patriotic sculpture.
|
| 52 |
+
|
| 53 |
+
As well as Alexander's granite features, 240 ft high and 170 ft wide, a
|
| 54 |
+
museum, a restored amphitheatre and car park for admiring crowds are
|
| 55 |
+
planned
|
| 56 |
+
---------------------
|
| 57 |
+
So is this mountain limestone or granite?
|
| 58 |
+
If it's limestone, it'll weather pretty fast.
|
| 59 |
+
|
| 60 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 61 |
+
4 DVDs Free +s&p Join Now
|
| 62 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 63 |
+
---------------------------------------------------------------------~->
|
| 64 |
+
|
| 65 |
+
To unsubscribe from this group, send an email to:
|
| 66 | |
| 67 |
+
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0003.acfc5ad94bbd27118a0d8685d18c89dd
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 13:52:59 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 0314547C66
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 08:52:58 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 13:52:59 +0100 (IST)
|
| 10 |
+
Received: from n16.grp.scd.yahoo.com (n16.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.71]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7MCrdZ07070 for <[email protected]>; Thu, 22 Aug 2002 13:53:39 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52733-1030020820-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.198] by n16.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 12:53:40 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 12:53:39 -0000
|
| 19 |
+
Received: (qmail 76099 invoked from network); 22 Aug 2002 12:53:39 -0000
|
| 20 |
+
Received: from unknown (66.218.66.218) by m5.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 12:53:39 -0000
|
| 22 |
+
Received: from unknown (HELO rhenium.btinternet.com) (194.73.73.93) by
|
| 23 |
+
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 12:53:39 -0000
|
| 24 |
+
Received: from host217-36-23-185.in-addr.btopenworld.com ([217.36.23.185])
|
| 25 |
+
by rhenium.btinternet.com with esmtp (Exim 3.22 #8) id 17hrT0-0004gj-00
|
| 26 |
+
for [email protected]; Thu, 22 Aug 2002 13:53:38 +0100
|
| 27 |
+
X-Mailer: Microsoft Outlook Express Macintosh Edition - 4.5 (0410)
|
| 28 |
+
To: zzzzteana <[email protected]>
|
| 29 |
+
X-Priority: 3
|
| 30 |
+
Message-Id: <[email protected]>
|
| 31 |
+
From: "Tim Chapman" <[email protected]>
|
| 32 |
+
X-Yahoo-Profile: tim2ubh
|
| 33 |
+
MIME-Version: 1.0
|
| 34 |
+
Mailing-List: list [email protected]; contact
|
| 35 | |
| 36 |
+
Delivered-To: mailing list [email protected]
|
| 37 |
+
Precedence: bulk
|
| 38 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 39 |
+
Date: Thu, 22 Aug 2002 13:52:38 +0100
|
| 40 |
+
Subject: [zzzzteana] Moscow bomber
|
| 41 |
+
Reply-To: [email protected]
|
| 42 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 43 |
+
Content-Transfer-Encoding: 7bit
|
| 44 |
+
|
| 45 |
+
Man Threatens Explosion In Moscow
|
| 46 |
+
|
| 47 |
+
Thursday August 22, 2002 1:40 PM
|
| 48 |
+
MOSCOW (AP) - Security officers on Thursday seized an unidentified man who
|
| 49 |
+
said he was armed with explosives and threatened to blow up his truck in
|
| 50 |
+
front of Russia's Federal Security Services headquarters in Moscow, NTV
|
| 51 |
+
television reported.
|
| 52 |
+
The officers seized an automatic rifle the man was carrying, then the man
|
| 53 |
+
got out of the truck and was taken into custody, NTV said. No other details
|
| 54 |
+
were immediately available.
|
| 55 |
+
The man had demanded talks with high government officials, the Interfax and
|
| 56 |
+
ITAR-Tass news agencies said. Ekho Moskvy radio reported that he wanted to
|
| 57 |
+
talk with Russian President Vladimir Putin.
|
| 58 |
+
Police and security forces rushed to the Security Service building, within
|
| 59 |
+
blocks of the Kremlin, Red Square and the Bolshoi Ballet, and surrounded the
|
| 60 |
+
man, who claimed to have one and a half tons of explosives, the news
|
| 61 |
+
agencies said. Negotiations continued for about one and a half hours outside
|
| 62 |
+
the building, ITAR-Tass and Interfax reported, citing witnesses.
|
| 63 |
+
The man later drove away from the building, under police escort, and drove
|
| 64 |
+
to a street near Moscow's Olympic Penta Hotel, where authorities held
|
| 65 |
+
further negotiations with him, the Moscow police press service said. The
|
| 66 |
+
move appeared to be an attempt by security services to get him to a more
|
| 67 |
+
secure location.
|
| 68 |
+
|
| 69 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 70 |
+
4 DVDs Free +s&p Join Now
|
| 71 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 72 |
+
---------------------------------------------------------------------~->
|
| 73 |
+
|
| 74 |
+
To unsubscribe from this group, send an email to:
|
| 75 | |
| 76 |
+
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0004.e8d5727378ddde5c3be181df593f1712
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 14:23:39 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 9DAE147C66
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 09:23:38 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:23:38 +0100 (IST)
|
| 10 |
+
Received: from web.tb.tf (route-64-131-126-36.telocity.com
|
| 11 |
+
[64.131.126.36]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
| 12 |
+
g7MDGOZ07922 for <[email protected]>; Thu, 22 Aug 2002 14:16:24 +0100
|
| 13 |
+
Received: from web.tb.tf (localhost.localdomain [127.0.0.1]) by web.tb.tf
|
| 14 |
+
(8.11.6/8.11.6) with ESMTP id g7MDP9I16418; Thu, 22 Aug 2002 09:25:09
|
| 15 |
+
-0400
|
| 16 |
+
Received: from red.harvee.home (red [192.168.25.1] (may be forged)) by
|
| 17 |
+
web.tb.tf (8.11.6/8.11.6) with ESMTP id g7MDO4I16408 for
|
| 18 |
+
<[email protected]>; Thu, 22 Aug 2002 09:24:04 -0400
|
| 19 |
+
Received: from prserv.net (out4.prserv.net [32.97.166.34]) by
|
| 20 |
+
red.harvee.home (8.11.6/8.11.6) with ESMTP id g7MDFBD29237 for
|
| 21 |
+
<[email protected]>; Thu, 22 Aug 2002 09:15:12 -0400
|
| 22 |
+
Received: from [209.202.248.109]
|
| 23 |
+
(slip-32-103-249-10.ma.us.prserv.net[32.103.249.10]) by prserv.net (out4)
|
| 24 |
+
with ESMTP id <2002082213150220405qu8jce>; Thu, 22 Aug 2002 13:15:07 +0000
|
| 25 |
+
MIME-Version: 1.0
|
| 26 |
+
X-Sender: @ (Unverified)
|
| 27 |
+
Message-Id: <p04330137b98a941c58a8@[209.202.248.109]>
|
| 28 |
+
To: undisclosed-recipient: ;
|
| 29 |
+
From: Monty Solomon <[email protected]>
|
| 30 |
+
Content-Type: text/plain; charset="us-ascii"
|
| 31 |
+
Subject: [IRR] Klez: The Virus That Won't Die
|
| 32 |
+
Sender: [email protected]
|
| 33 |
+
Errors-To: [email protected]
|
| 34 |
+
X-Beenthere: [email protected]
|
| 35 |
+
X-Mailman-Version: 2.0.6
|
| 36 |
+
Precedence: bulk
|
| 37 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 38 |
+
List-Post: <mailto:[email protected]>
|
| 39 |
+
List-Subscribe: <http://tb.tf/mailman/listinfo/irregulars>,
|
| 40 |
+
<mailto:[email protected]?subject=subscribe>
|
| 41 |
+
List-Id: New home of the TBTF Irregulars mailing list <irregulars.tb.tf>
|
| 42 |
+
List-Unsubscribe: <http://tb.tf/mailman/listinfo/irregulars>,
|
| 43 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 44 |
+
List-Archive: <http://tb.tf/mailman/private/irregulars/>
|
| 45 |
+
Date: Thu, 22 Aug 2002 09:15:25 -0400
|
| 46 |
+
|
| 47 |
+
Klez: The Virus That Won't Die
|
| 48 |
+
|
| 49 |
+
Already the most prolific virus ever, Klez continues to wreak havoc.
|
| 50 |
+
|
| 51 |
+
Andrew Brandt
|
| 52 |
+
>>From the September 2002 issue of PC World magazine
|
| 53 |
+
Posted Thursday, August 01, 2002
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
The Klez worm is approaching its seventh month of wriggling across
|
| 57 |
+
the Web, making it one of the most persistent viruses ever. And
|
| 58 |
+
experts warn that it may be a harbinger of new viruses that use a
|
| 59 |
+
combination of pernicious approaches to go from PC to PC.
|
| 60 |
+
|
| 61 |
+
Antivirus software makers Symantec and McAfee both report more than
|
| 62 |
+
2000 new infections daily, with no sign of letup at press time. The
|
| 63 |
+
British security firm MessageLabs estimates that 1 in every 300
|
| 64 |
+
e-mail messages holds a variation of the Klez virus, and says that
|
| 65 |
+
Klez has already surpassed last summer's SirCam as the most prolific
|
| 66 |
+
virus ever.
|
| 67 |
+
|
| 68 |
+
And some newer Klez variants aren't merely nuisances--they can carry
|
| 69 |
+
other viruses in them that corrupt your data.
|
| 70 |
+
|
| 71 |
+
...
|
| 72 |
+
|
| 73 |
+
http://www.pcworld.com/news/article/0,aid,103259,00.asp
|
| 74 |
+
_______________________________________________
|
| 75 |
+
Irregulars mailing list
|
| 76 | |
| 77 |
+
http://tb.tf/mailman/listinfo/irregulars
|
| 78 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0005.8c3b9e9c0f3f183ddaf7592a11b99957
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 14:44:07 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 985B247C67
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 09:44:04 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:44:04 +0100 (IST)
|
| 10 |
+
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MDgEZ08598 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 14:42:19 +0100
|
| 13 |
+
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
| 14 |
+
listman.redhat.com (Postfix) with ESMTP id F26113EE9A; Thu, 22 Aug 2002
|
| 15 |
+
09:42:15 -0400 (EDT)
|
| 16 |
+
Delivered-To: [email protected]
|
| 17 |
+
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
| 18 |
+
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 4ACEF3F4A2
|
| 19 |
+
for <[email protected]>; Thu, 22 Aug 2002 09:38:03 -0400 (EDT)
|
| 20 |
+
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
| 21 |
+
id g7MDc0601591 for [email protected]; Thu, 22 Aug 2002
|
| 22 |
+
09:38:00 -0400
|
| 23 |
+
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
| 24 |
+
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MDc0Y01587 for
|
| 25 |
+
<[email protected]>; Thu, 22 Aug 2002 09:38:00 -0400
|
| 26 |
+
Received: from mta03bw.bigpond.com (mta03bw.bigpond.com [139.134.6.86]) by
|
| 27 |
+
mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MDNVl14108 for
|
| 28 |
+
<[email protected]>; Thu, 22 Aug 2002 09:23:31 -0400
|
| 29 |
+
Received: from hobbit.linuxworks.com.au ([144.135.24.81]) by
|
| 30 |
+
mta03bw.bigpond.com (Netscape Messaging Server 4.15 mta03bw May 23 2002
|
| 31 |
+
23:53:28) with SMTP id H18Z7300.F6G for <[email protected]>;
|
| 32 |
+
Thu, 22 Aug 2002 23:37:51 +1000
|
| 33 |
+
Received: from CPE-203-51-220-31.qld.bigpond.net.au ([203.51.220.31]) by
|
| 34 |
+
bwmam05.mailsvc.email.bigpond.com(MailRouter V3.0n 44/32989362);
|
| 35 |
+
22 Aug 2002 23:37:51
|
| 36 |
+
Received: (from tony@localhost) by hobbit.linuxworks.com.au
|
| 37 |
+
(8.11.6/8.11.6) id g7MDaWX26868; Thu, 22 Aug 2002 23:36:32 +1000
|
| 38 |
+
Message-Id: <[email protected]>
|
| 39 |
+
To: Exmh Users Mailing List <[email protected]>
|
| 40 |
+
From: Tony Nugent <[email protected]>
|
| 41 |
+
X-Face: ]IrGs{LrofDtGfsrG!As5=G'2HRr2zt:H>djXb5@v|Dr!jOelxzAZ`!}("]}]
|
| 42 |
+
Q!)1w#X;)nLlb'XhSu,QL>;)L/l06wsI?rv-xy6%Y1e"BUiV%)mU;]f-5<#U6
|
| 43 |
+
UthZ0QrF7\_p#q}*Cn}jd|XT~7P7ik]Q!2u%aTtvc;)zfH\:3f<[a:)M
|
| 44 |
+
Organization: Linux Works for network
|
| 45 |
+
X-Mailer: nmh-1.0.4 exmh-2.4
|
| 46 |
+
X-Os: Linux-2.4 RedHat 7.2
|
| 47 |
+
In-Reply-To: message-id <[email protected]> of Wed,
|
| 48 |
+
Aug 21 15:46:52 2002
|
| 49 |
+
Subject: Re: Insert signature
|
| 50 |
+
X-Loop: [email protected]
|
| 51 |
+
Sender: [email protected]
|
| 52 |
+
Errors-To: [email protected]
|
| 53 |
+
X-Beenthere: [email protected]
|
| 54 |
+
X-Mailman-Version: 2.0.1
|
| 55 |
+
Precedence: bulk
|
| 56 |
+
Reply-To: [email protected]
|
| 57 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 58 |
+
List-Post: <mailto:[email protected]>
|
| 59 |
+
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
| 60 |
+
<mailto:[email protected]?subject=subscribe>
|
| 61 |
+
List-Id: Discussion list for EXMH users <exmh-users.example.com>
|
| 62 |
+
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-users>,
|
| 63 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 64 |
+
List-Archive: <https://listman.example.com/mailman/private/exmh-users/>
|
| 65 |
+
Date: Thu, 22 Aug 2002 23:36:32 +1000
|
| 66 |
+
|
| 67 |
+
On Wed Aug 21 2002 at 15:46, Ulises Ponce wrote:
|
| 68 |
+
|
| 69 |
+
> Hi!
|
| 70 |
+
>
|
| 71 |
+
> Is there a command to insert the signature using a combination of keys and not
|
| 72 |
+
> to have sent the mail to insert it then?
|
| 73 |
+
|
| 74 |
+
I simply put it (them) into my (nmh) component files (components,
|
| 75 |
+
replcomps, forwcomps and so on). That way you get them when you are
|
| 76 |
+
editing your message. Also, by using comps files for specific
|
| 77 |
+
folders you can alter your .sig per folder (and other tricks). See
|
| 78 |
+
the docs for (n)mh for all the details.
|
| 79 |
+
|
| 80 |
+
There might (must?) also be a way to get sedit to do it, but I've
|
| 81 |
+
been using gvim as my exmh message editor for a long time now. I
|
| 82 |
+
load it with a command that loads some email-specific settings, eg,
|
| 83 |
+
to "syntax" colour-highlight the headers and quoted parts of an
|
| 84 |
+
email)... it would be possible to map some (vim) keys that would add
|
| 85 |
+
a sig (or even give a selection of sigs to choose from).
|
| 86 |
+
|
| 87 |
+
And there are all sorts of ways to have randomly-chosen sigs...
|
| 88 |
+
somewhere at rtfm.mit.edu... ok, here we go:
|
| 89 |
+
rtfm.mit.edu/pub/usenet-by-group/news.answers/signature_finger_faq.
|
| 90 |
+
(Warning... it's old, May 1995).
|
| 91 |
+
|
| 92 |
+
> Regards,
|
| 93 |
+
> Ulises
|
| 94 |
+
|
| 95 |
+
Hope this helps.
|
| 96 |
+
|
| 97 |
+
Cheers
|
| 98 |
+
Tony
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
_______________________________________________
|
| 103 |
+
Exmh-users mailing list
|
| 104 | |
| 105 |
+
https://listman.redhat.com/mailman/listinfo/exmh-users
|
| 106 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0006.ee8b0dba12856155222be180ba122058
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 14:44:26 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id EC69D47C66
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 09:44:25 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:44:25 +0100 (IST)
|
| 10 |
+
Received: from n6.grp.scd.yahoo.com (n6.grp.scd.yahoo.com [66.218.66.90])
|
| 11 |
+
by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7MDcOZ08504 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 14:38:25 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52736-1030023506-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.192] by n6.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 13:38:26 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 13:38:25 -0000
|
| 19 |
+
Received: (qmail 48882 invoked from network); 22 Aug 2002 13:38:25 -0000
|
| 20 |
+
Received: from unknown (66.218.66.218) by m10.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 13:38:25 -0000
|
| 22 |
+
Received: from unknown (HELO postbox.ee.ed.ac.uk) (129.215.80.253) by
|
| 23 |
+
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 13:38:24 -0000
|
| 24 |
+
Received: from ee.ed.ac.uk (sxs@dunblane [129.215.34.86]) by
|
| 25 |
+
postbox.ee.ed.ac.uk (8.11.0/8.11.0) with ESMTP id g7MDcNi28645 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 14:38:23 +0100 (BST)
|
| 27 |
+
Message-Id: <[email protected]>
|
| 28 |
+
Organization: Scottish Microelectronics Centre
|
| 29 |
+
User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.1b) Gecko/20020628
|
| 30 |
+
X-Accept-Language: en, en-us
|
| 31 |
+
To: [email protected]
|
| 32 |
+
References: <3D64F325.11319.61EA648@localhost>
|
| 33 |
+
From: Stewart Smith <[email protected]>
|
| 34 |
+
X-Yahoo-Profile: stochasticus
|
| 35 |
+
MIME-Version: 1.0
|
| 36 |
+
Mailing-List: list [email protected]; contact
|
| 37 | |
| 38 |
+
Delivered-To: mailing list [email protected]
|
| 39 |
+
Precedence: bulk
|
| 40 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 41 |
+
Date: Thu, 22 Aug 2002 14:38:22 +0100
|
| 42 |
+
Subject: Re: [zzzzteana] Nothing like mama used to make
|
| 43 |
+
Reply-To: [email protected]
|
| 44 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 45 |
+
Content-Transfer-Encoding: 7bit
|
| 46 |
+
|
| 47 |
+
> in adding cream to spaghetti carbonara, which has the same effect on pasta as
|
| 48 |
+
> making a pizza a deep-pie;
|
| 49 |
+
|
| 50 |
+
I just had to jump in here as Carbonara is one of my favourites to make and ask
|
| 51 |
+
what the hell are you supposed to use instead of cream? I've never seen a
|
| 52 |
+
recipe that hasn't used this. Personally I use low fat creme fraiche because it
|
| 53 |
+
works quite nicely but the only time I've seen an supposedly authentic recipe
|
| 54 |
+
for carbonara it was identical to mine (cream, eggs and lots of fresh parmesan)
|
| 55 |
+
except for the creme fraiche.
|
| 56 |
+
|
| 57 |
+
Stew
|
| 58 |
+
--
|
| 59 |
+
Stewart Smith
|
| 60 |
+
Scottish Microelectronics Centre, University of Edinburgh.
|
| 61 |
+
http://www.ee.ed.ac.uk/~sxs/
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 65 |
+
4 DVDs Free +s&p Join Now
|
| 66 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 67 |
+
---------------------------------------------------------------------~->
|
| 68 |
+
|
| 69 |
+
To unsubscribe from this group, send an email to:
|
| 70 | |
| 71 |
+
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 75 |
+
|
| 76 |
+
|
| 77 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0007.c75188382f64b090022fa3b095b020b0
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 14:54:39 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 16FC743F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 09:54:38 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:54:39 +0100 (IST)
|
| 10 |
+
Received: from n14.grp.scd.yahoo.com (n14.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.69]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7MDoxZ08960 for <[email protected]>; Thu, 22 Aug 2002 14:50:59 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52737-1030024261-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.66.95] by n14.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 13:51:01 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 13:51:00 -0000
|
| 19 |
+
Received: (qmail 71894 invoked from network); 22 Aug 2002 13:51:00 -0000
|
| 20 |
+
Received: from unknown (66.218.66.218) by m7.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 13:51:00 -0000
|
| 22 |
+
Received: from unknown (HELO haymarket.ed.ac.uk) (129.215.128.53) by
|
| 23 |
+
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 13:51:00 -0000
|
| 24 |
+
Received: from srv0.ems.ed.ac.uk (srv0.ems.ed.ac.uk [129.215.117.0]) by
|
| 25 |
+
haymarket.ed.ac.uk (8.11.6/8.11.6) with ESMTP id g7MDow310334 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 14:50:59 +0100 (BST)
|
| 27 |
+
Received: from EMS-SRV0/SpoolDir by srv0.ems.ed.ac.uk (Mercury 1.44);
|
| 28 |
+
22 Aug 02 14:50:58 +0000
|
| 29 |
+
Received: from SpoolDir by EMS-SRV0 (Mercury 1.44); 22 Aug 02 14:50:31 +0000
|
| 30 |
+
Organization: Management School
|
| 31 |
+
To: [email protected]
|
| 32 |
+
Message-Id: <3D64FA3C.13325.63A5960@localhost>
|
| 33 |
+
Priority: normal
|
| 34 |
+
In-Reply-To: <[email protected]>
|
| 35 |
+
X-Mailer: Pegasus Mail for Windows (v4.01)
|
| 36 |
+
Content-Description: Mail message body
|
| 37 |
+
From: "Martin Adamson" <[email protected]>
|
| 38 |
+
MIME-Version: 1.0
|
| 39 |
+
Mailing-List: list [email protected]; contact
|
| 40 | |
| 41 |
+
Delivered-To: mailing list [email protected]
|
| 42 |
+
Precedence: bulk
|
| 43 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 44 |
+
Date: Thu, 22 Aug 2002 14:50:31 +0100
|
| 45 |
+
Subject: Re: [zzzzteana] Nothing like mama used to make
|
| 46 |
+
Reply-To: [email protected]
|
| 47 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 48 |
+
Content-Transfer-Encoding: 7bit
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
> I just had to jump in here as Carbonara is one of my favourites to make and
|
| 52 |
+
> ask
|
| 53 |
+
> what the hell are you supposed to use instead of cream?
|
| 54 |
+
|
| 55 |
+
Isn't it just basically a mixture of beaten egg and bacon (or pancetta,
|
| 56 |
+
really)? You mix in the raw egg to the cooked pasta and the heat of the pasta
|
| 57 |
+
cooks the egg. That's my understanding.
|
| 58 |
+
|
| 59 |
+
Martin
|
| 60 |
+
|
| 61 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 62 |
+
4 DVDs Free +s&p Join Now
|
| 63 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 64 |
+
---------------------------------------------------------------------~->
|
| 65 |
+
|
| 66 |
+
To unsubscribe from this group, send an email to:
|
| 67 | |
| 68 |
+
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0008.20bc0b4ba2d99aae1c7098069f611a9b
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 14:54:40 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id E3D7B47C66
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 09:54:39 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 14:54:40 +0100 (IST)
|
| 10 |
+
Received: from n11.grp.scd.yahoo.com (n11.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.66]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7MDt8Z09193 for <[email protected]>; Thu, 22 Aug 2002 14:55:10 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52738-1030024499-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.66.94] by n11.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 13:55:03 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 13:54:59 -0000
|
| 19 |
+
Received: (qmail 43039 invoked from network); 22 Aug 2002 13:54:58 -0000
|
| 20 |
+
Received: from unknown (66.218.66.216) by m1.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 13:54:58 -0000
|
| 22 |
+
Received: from unknown (HELO haymarket.ed.ac.uk) (129.215.128.53) by
|
| 23 |
+
mta1.grp.scd.yahoo.com with SMTP; 22 Aug 2002 13:54:58 -0000
|
| 24 |
+
Received: from srv0.ems.ed.ac.uk (srv0.ems.ed.ac.uk [129.215.117.0]) by
|
| 25 |
+
haymarket.ed.ac.uk (8.11.6/8.11.6) with ESMTP id g7MDsv311745 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 14:54:57 +0100 (BST)
|
| 27 |
+
Received: from EMS-SRV0/SpoolDir by srv0.ems.ed.ac.uk (Mercury 1.44);
|
| 28 |
+
22 Aug 02 14:54:56 +0000
|
| 29 |
+
Received: from SpoolDir by EMS-SRV0 (Mercury 1.44); 22 Aug 02 14:54:29 +0000
|
| 30 |
+
Organization: Management School
|
| 31 |
+
To: [email protected]
|
| 32 |
+
Message-Id: <3D64FB27.18538.63DEC17@localhost>
|
| 33 |
+
Priority: normal
|
| 34 |
+
X-Mailer: Pegasus Mail for Windows (v4.01)
|
| 35 |
+
Content-Description: Mail message body
|
| 36 |
+
From: "Martin Adamson" <[email protected]>
|
| 37 |
+
MIME-Version: 1.0
|
| 38 |
+
Mailing-List: list [email protected]; contact
|
| 39 | |
| 40 |
+
Delivered-To: mailing list [email protected]
|
| 41 |
+
Precedence: bulk
|
| 42 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 43 |
+
Date: Thu, 22 Aug 2002 14:54:25 +0100
|
| 44 |
+
Subject: [zzzzteana] Playboy wants to go out with a bang
|
| 45 |
+
Reply-To: [email protected]
|
| 46 |
+
Content-Type: text/plain; charset=ISO-8859-1
|
| 47 |
+
Content-Transfer-Encoding: 8bit
|
| 48 |
+
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
| 49 |
+
id g7MDt8Z09193
|
| 50 |
+
|
| 51 |
+
The Scotsman - 22 August 2002
|
| 52 |
+
|
| 53 |
+
Playboy wants to go out with a bang
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
AN AGEING Berlin playboy has come up with an unusual offer to lure women into
|
| 57 |
+
his bed - by promising the last woman he sleeps with an inheritance of 250,000
|
| 58 |
+
(�160,000).
|
| 59 |
+
|
| 60 |
+
Rolf Eden, 72, a Berlin disco owner famous for his countless sex partners,
|
| 61 |
+
said he could imagine no better way to die than in the arms of an attractive
|
| 62 |
+
young woman - preferably under 30.
|
| 63 |
+
|
| 64 |
+
"I put it all in my last will and testament - the last woman who sleeps with
|
| 65 |
+
me gets all the money," Mr Eden told Bild newspaper.
|
| 66 |
+
|
| 67 |
+
"I want to pass away in the most beautiful moment of my life. First a lot of
|
| 68 |
+
fun with a beautiful woman, then wild sex, a final orgasm - and it will all
|
| 69 |
+
end with a heart attack and then I�m gone."
|
| 70 |
+
|
| 71 |
+
Mr Eden, who is selling his nightclub this year, said applications should be
|
| 72 |
+
sent in quickly because of his age. "It could end very soon," he said.
|
| 73 |
+
|
| 74 |
+
|
| 75 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 76 |
+
4 DVDs Free +s&p Join Now
|
| 77 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 78 |
+
---------------------------------------------------------------------~->
|
| 79 |
+
|
| 80 |
+
To unsubscribe from this group, send an email to:
|
| 81 | |
| 82 |
+
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0009.435ae292d75abb1ca492dcc2d5cf1570
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 15:05:07 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id EF86747C67
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 10:05:00 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:05:01 +0100 (IST)
|
| 10 |
+
Received: from n34.grp.scd.yahoo.com (n34.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.102]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7ME1MZ09279 for <[email protected]>; Thu, 22 Aug 2002 15:01:22 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52739-1030024883-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.195] by n34.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 14:01:23 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 14:01:23 -0000
|
| 19 |
+
Received: (qmail 45116 invoked from network); 22 Aug 2002 14:01:22 -0000
|
| 20 |
+
Received: from unknown (66.218.66.218) by m2.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 14:01:22 -0000
|
| 22 |
+
Received: from unknown (HELO postbox.ee.ed.ac.uk) (129.215.80.253) by
|
| 23 |
+
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 14:01:22 -0000
|
| 24 |
+
Received: from ee.ed.ac.uk (sxs@dunblane [129.215.34.86]) by
|
| 25 |
+
postbox.ee.ed.ac.uk (8.11.0/8.11.0) with ESMTP id g7ME1Li02942 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 15:01:21 +0100 (BST)
|
| 27 |
+
Message-Id: <[email protected]>
|
| 28 |
+
Organization: Scottish Microelectronics Centre
|
| 29 |
+
User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:1.1b) Gecko/20020628
|
| 30 |
+
X-Accept-Language: en, en-us
|
| 31 |
+
To: [email protected]
|
| 32 |
+
References: <3D64FA3C.13325.63A5960@localhost>
|
| 33 |
+
From: Stewart Smith <[email protected]>
|
| 34 |
+
X-Yahoo-Profile: stochasticus
|
| 35 |
+
MIME-Version: 1.0
|
| 36 |
+
Mailing-List: list [email protected]; contact
|
| 37 | |
| 38 |
+
Delivered-To: mailing list [email protected]
|
| 39 |
+
Precedence: bulk
|
| 40 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 41 |
+
Date: Thu, 22 Aug 2002 15:01:20 +0100
|
| 42 |
+
Subject: Re: [zzzzteana] Nothing like mama used to make
|
| 43 |
+
Reply-To: [email protected]
|
| 44 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 45 |
+
Content-Transfer-Encoding: 7bit
|
| 46 |
+
|
| 47 |
+
Martin Adamson wrote:
|
| 48 |
+
>
|
| 49 |
+
> Isn't it just basically a mixture of beaten egg and bacon (or pancetta,
|
| 50 |
+
> really)? You mix in the raw egg to the cooked pasta and the heat of the pasta
|
| 51 |
+
> cooks the egg. That's my understanding.
|
| 52 |
+
>
|
| 53 |
+
|
| 54 |
+
You're probably right, mine's just the same but with the cream added to the
|
| 55 |
+
eggs. I guess I should try it without. Actually looking on the internet for a
|
| 56 |
+
recipe I found this one from possibly one of the scariest people I've ever seen,
|
| 57 |
+
and he's a US Congressman:
|
| 58 |
+
<http://www.virtualcities.com/ons/me/gov/megvjb1.htm>
|
| 59 |
+
|
| 60 |
+
That's one of the worst non-smiles ever.
|
| 61 |
+
|
| 62 |
+
Stew
|
| 63 |
+
ps. Apologies if any of the list's Maine residents voted for this man, you won't
|
| 64 |
+
do it again once you've seen this pic.
|
| 65 |
+
|
| 66 |
+
--
|
| 67 |
+
Stewart Smith
|
| 68 |
+
Scottish Microelectronics Centre, University of Edinburgh.
|
| 69 |
+
http://www.ee.ed.ac.uk/~sxs/
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 73 |
+
4 DVDs Free +s&p Join Now
|
| 74 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 75 |
+
---------------------------------------------------------------------~->
|
| 76 |
+
|
| 77 |
+
To unsubscribe from this group, send an email to:
|
| 78 | |
| 79 |
+
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0010.4996141de3f21e858c22f88231a9f463
ADDED
|
@@ -0,0 +1,176 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 15:05:07 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7A0C347C68
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 10:05:03 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:05:03 +0100 (IST)
|
| 10 |
+
Received: from n34.grp.scd.yahoo.com (n34.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.102]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7ME1rZ09290 for <[email protected]>; Thu, 22 Aug 2002 15:01:54 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52740-1030024915-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.194] by n34.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 14:01:55 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 14:01:55 -0000
|
| 19 |
+
Received: (qmail 59494 invoked from network); 22 Aug 2002 14:01:55 -0000
|
| 20 |
+
Received: from unknown (66.218.66.218) by m12.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 14:01:55 -0000
|
| 22 |
+
Received: from unknown (HELO haymarket.ed.ac.uk) (129.215.128.53) by
|
| 23 |
+
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 14:01:54 -0000
|
| 24 |
+
Received: from srv0.ems.ed.ac.uk (srv0.ems.ed.ac.uk [129.215.117.0]) by
|
| 25 |
+
haymarket.ed.ac.uk (8.11.6/8.11.6) with ESMTP id g7ME1r313981 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 15:01:53 +0100 (BST)
|
| 27 |
+
Received: from EMS-SRV0/SpoolDir by srv0.ems.ed.ac.uk (Mercury 1.44);
|
| 28 |
+
22 Aug 02 15:01:52 +0000
|
| 29 |
+
Received: from SpoolDir by EMS-SRV0 (Mercury 1.44); 22 Aug 02 15:01:34 +0000
|
| 30 |
+
Organization: Management School
|
| 31 |
+
To: [email protected]
|
| 32 |
+
Message-Id: <3D64FCD2.20705.6447320@localhost>
|
| 33 |
+
Priority: normal
|
| 34 |
+
X-Mailer: Pegasus Mail for Windows (v4.01)
|
| 35 |
+
Content-Description: Mail message body
|
| 36 |
+
From: "Martin Adamson" <[email protected]>
|
| 37 |
+
MIME-Version: 1.0
|
| 38 |
+
Mailing-List: list [email protected]; contact
|
| 39 | |
| 40 |
+
Delivered-To: mailing list [email protected]
|
| 41 |
+
Precedence: bulk
|
| 42 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 43 |
+
Date: Thu, 22 Aug 2002 15:01:33 +0100
|
| 44 |
+
Subject: [zzzzteana] Meaningful sentences
|
| 45 |
+
Reply-To: [email protected]
|
| 46 |
+
Content-Type: text/plain; charset=ISO-8859-1
|
| 47 |
+
Content-Transfer-Encoding: 8bit
|
| 48 |
+
X-MIME-Autoconverted: from quoted-printable to 8bit by dogma.slashnull.org
|
| 49 |
+
id g7ME1rZ09290
|
| 50 |
+
|
| 51 |
+
The Scotsman
|
| 52 |
+
|
| 53 |
+
Thu 22 Aug 2002
|
| 54 |
+
|
| 55 |
+
Meaningful sentences
|
| 56 |
+
|
| 57 |
+
Tracey Lawson
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
If you ever wanted to look like "one of the most dangerous inmates in prison
|
| 61 |
+
history", as one judge described Charles Bronson, now�s your chance. Bronson -
|
| 62 |
+
the serial hostage taker, not the movie star - has written a health and
|
| 63 |
+
fitness guide in which he shares some of the secrets behind his legendary
|
| 64 |
+
muscle power.
|
| 65 |
+
|
| 66 |
+
Solitary Fitness - a title which bears testament to the fact that Bronson, 48,
|
| 67 |
+
has spent 24 of his 28 prison years in solitary confinement - explains how he
|
| 68 |
+
has turned himself into a lean, mean, fitness machine while living 23 hours a
|
| 69 |
+
day in a space just 12 feet by eight feet, on a diet of scrubs grub and at
|
| 70 |
+
virtually no cost.
|
| 71 |
+
|
| 72 |
+
The book is aimed at those who want to get fabulously fit without spending a
|
| 73 |
+
fortune on gym memberships, protein supplements or designer trainers, and
|
| 74 |
+
starts with a fierce attack on some of the expensive myths churned out by the
|
| 75 |
+
exercise industry.
|
| 76 |
+
|
| 77 |
+
"I pick up a fitness mag, I start to laugh and I wipe my arse with it," is the
|
| 78 |
+
opening paragraph penned by Bronson. "It�s a joke and a big con and they call
|
| 79 |
+
me a criminal!" You can�t help feeling he has a point.
|
| 80 |
+
|
| 81 |
+
This is not the first book that Bronson has written from behind bars, having
|
| 82 |
+
already published Birdman Opens His Mind, which features drawings and poems
|
| 83 |
+
created by Bronson while in prison. And he is not the first prisoner to
|
| 84 |
+
discover creative expression while residing at Her Majesty�s pleasure.
|
| 85 |
+
|
| 86 |
+
Jimmy Boyle, the Scots sculptor and novelist, discovered his artistic talents
|
| 87 |
+
when he was sent to Barlinnie Prison�s famous special unit, which aimed to
|
| 88 |
+
help inmates put their violent pasts behind them by teaching them how to
|
| 89 |
+
express their emotions artistically. Boyle was sentenced to life for the
|
| 90 |
+
murder of "Babs" Rooney in 1967. Once released, he moved to Edinburgh where he
|
| 91 |
+
has become a respected artist. His first novel, Hero of the Underworld, was
|
| 92 |
+
published in 1999 and his autobiography, A Sense of Freedom, was made into an
|
| 93 |
+
award-winning film.
|
| 94 |
+
|
| 95 |
+
Hugh Collins was jailed for life in 1977 for the murder of William Mooney in
|
| 96 |
+
Glasgow, and in his first year in Barlinnie prison stabbed three prison
|
| 97 |
+
officers, earning him an extra seven-year sentence. But, after being
|
| 98 |
+
transferred to the same unit that Boyle attended, he learned to sculpt and
|
| 99 |
+
developed an interest in art. He later published Autobiography of a Murderer,
|
| 100 |
+
a frank account of Glasgow�s criminal culture in the 1960s, which received
|
| 101 |
+
critical praise.
|
| 102 |
+
|
| 103 |
+
And Lord Archer doesn�t seem to have had trouble continuing to write the books
|
| 104 |
+
that have made him millions while in jail. He recently signed a three-book
|
| 105 |
+
deal with Macmillan publishers worth a reported �10 million, and is no doubt
|
| 106 |
+
scribbling away as we speak.
|
| 107 |
+
|
| 108 |
+
So why is it that men like Collins, Bronson and Boyle, who can be so
|
| 109 |
+
destructive towards society on the outside, can become so creative once stuck
|
| 110 |
+
on the inside? Steve Richards, Bronson�s publisher, has published many books
|
| 111 |
+
about criminal figures and believes the roots of this phenomenon are both
|
| 112 |
+
pragmatic and profound.
|
| 113 |
+
|
| 114 |
+
He says: "Prison is sometimes the first time some criminals will ever have
|
| 115 |
+
known a stable environment, and this can be the first time they have the
|
| 116 |
+
chance to focus on their creative skills.
|
| 117 |
+
|
| 118 |
+
"It may also be the first time that they have really had the chance of an
|
| 119 |
+
education, if their early years have been hard. It could be the first time
|
| 120 |
+
anyone has offered them the chance to explore their creative talents."
|
| 121 |
+
|
| 122 |
+
However, Richards believes the reasons are also deeper than that. He says:
|
| 123 |
+
"Once they are behind bars, the cold light of day hits them, and they examine
|
| 124 |
+
the very essence of who they are.
|
| 125 |
+
|
| 126 |
+
"They ask themselves, am I a man who wants to be remembered for violence? Or
|
| 127 |
+
am I a man who can contribute to society, who can be remembered for something
|
| 128 |
+
good?"
|
| 129 |
+
|
| 130 |
+
Bronson - who was born Michael Gordon Peterson, but changed his name to that
|
| 131 |
+
of the Hollywood star of the Death Wish films - has, so far, been remembered
|
| 132 |
+
mainly for things bad. He was originally jailed for seven years for armed
|
| 133 |
+
robbery in 1974, and has had a series of sentences added to his original term
|
| 134 |
+
over the years as a result of attacking people in prison. In 2000 he was
|
| 135 |
+
jailed for life after being convicted of holding a teacher hostage for nearly
|
| 136 |
+
two days during a jail siege.
|
| 137 |
+
|
| 138 |
+
Standing five feet ten and a half inches tall and weighing 210lbs, he is
|
| 139 |
+
renowned for his strength. He has bent metal cell doors with his bare hands
|
| 140 |
+
and does up to 3,000 - yes, 3,000 - press-ups a day. As he puts it: "I can hit
|
| 141 |
+
a man 20 times in four seconds, I can push 132 press ups in 60 seconds."
|
| 142 |
+
|
| 143 |
+
But judging by our current obsession with health and exercise, Solitary
|
| 144 |
+
Fitness might be the book which will see Bronson�s face sitting on every
|
| 145 |
+
coffee table in the land. He might be the man to give us the dream body which
|
| 146 |
+
so many so-called fitness gurus promise but fail to motivate us into. Because
|
| 147 |
+
Bronson has learned to use words as powerfully as he can use his fists.
|
| 148 |
+
|
| 149 |
+
"All this crap about high-protein drinks, pills, diets, it�s just a load of
|
| 150 |
+
bollocks and a multi-million-pound racket," he writes, in what can only be
|
| 151 |
+
described as a refreshingly honest style. "We can all be fat lazy bastards,
|
| 152 |
+
it�s our choice, I�m sick of hearing and reading about excuses, if you stuff
|
| 153 |
+
your face with shit you become shit, that�s logical to me."
|
| 154 |
+
|
| 155 |
+
As motivational mantras go, that might be just the kick up the, er, backside
|
| 156 |
+
we all needed.
|
| 157 |
+
|
| 158 |
+
|
| 159 |
+
Solitary Fitness by Charles Bronson is published by Mirage Publishing and will
|
| 160 |
+
be available in bookstores from October at �7.99
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 164 |
+
4 DVDs Free +s&p Join Now
|
| 165 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 166 |
+
---------------------------------------------------------------------~->
|
| 167 |
+
|
| 168 |
+
To unsubscribe from this group, send an email to:
|
| 169 | |
| 170 |
+
|
| 171 |
+
|
| 172 |
+
|
| 173 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 174 |
+
|
| 175 |
+
|
| 176 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0011.07b11073b53634cff892a7988289a72e
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 15:15:12 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 1AD7B43F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 10:15:11 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:15:12 +0100 (IST)
|
| 10 |
+
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MECrZ09674 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 15:12:54 +0100
|
| 13 |
+
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
| 14 |
+
listman.redhat.com (Postfix) with ESMTP id C57DA3ECC9; Thu, 22 Aug 2002
|
| 15 |
+
10:13:02 -0400 (EDT)
|
| 16 |
+
Delivered-To: [email protected]
|
| 17 |
+
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
| 18 |
+
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 6854840C75
|
| 19 |
+
for <[email protected]>; Thu, 22 Aug 2002 10:12:27 -0400
|
| 20 |
+
(EDT)
|
| 21 |
+
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
| 22 |
+
id g7MECOK08343 for [email protected]; Thu, 22 Aug 2002
|
| 23 |
+
10:12:24 -0400
|
| 24 |
+
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
| 25 |
+
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MECOY08339 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 10:12:24 -0400
|
| 27 |
+
Received: from austin-jump.vircio.com
|
| 28 |
+
(IDENT:[email protected]
|
| 29 |
+
[192.12.3.99]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MDvul20394
|
| 30 |
+
for <[email protected]>; Thu, 22 Aug 2002 09:57:56 -0400
|
| 31 |
+
Received: (qmail 31227 invoked by uid 104); 22 Aug 2002 14:12:23 -0000
|
| 32 |
+
Received: from [email protected] by localhost.localdomain with
|
| 33 |
+
qmail-scanner-0.90 (uvscan: v4.1.60/v4218. . Clean. Processed in 0.340551
|
| 34 |
+
secs); 22/08/2002 09:12:23
|
| 35 |
+
Received: from deepeddy.vircio.com (@[10.1.2.1]) (envelope-sender
|
| 36 |
+
<[email protected]>) by austin-jump.vircio.com (qmail-ldap-1.03) with
|
| 37 |
+
SMTP for <[email protected]>; 22 Aug 2002 14:12:23 -0000
|
| 38 |
+
Received: (qmail 25511 invoked from network); 22 Aug 2002 14:12:18 -0000
|
| 39 |
+
Received: from localhost (HELO deepeddy.vircio.com)
|
| 40 |
+
(?LVKop2xGBpLZYqQBUZF/+jebI90KasL/?@[127.0.0.1]) (envelope-sender
|
| 41 |
+
<[email protected]>) by localhost (qmail-ldap-1.03) with SMTP for
|
| 42 |
+
<[email protected]>; 22 Aug 2002 14:12:18 -0000
|
| 43 |
+
X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4
|
| 44 |
+
To: "J. W. Ballantine" <[email protected]>
|
| 45 |
+
Cc: [email protected]
|
| 46 |
+
Subject: Re: New Sequences Window
|
| 47 |
+
In-Reply-To: <[email protected]>
|
| 48 |
+
References: <[email protected]>
|
| 49 |
+
X-Url: http://www.DeepEddy.Com/~cwg
|
| 50 |
+
X-Image-Url: http://www.DeepEddy.Com/~cwg/chris.gif
|
| 51 |
+
MIME-Version: 1.0
|
| 52 |
+
Content-Type: multipart/signed;
|
| 53 |
+
boundary="==_Exmh_1547759024P";
|
| 54 |
+
micalg=pgp-sha1;
|
| 55 |
+
protocol="application/pgp-signature"
|
| 56 |
+
Content-Transfer-Encoding: 7bit
|
| 57 |
+
Message-Id: <[email protected]>
|
| 58 |
+
From: Chris Garrigues <[email protected]>
|
| 59 |
+
X-Delivery-Agent: TMDA/0.57
|
| 60 |
+
Reply-To: Chris Garrigues <[email protected]>
|
| 61 |
+
X-Loop: [email protected]
|
| 62 |
+
Sender: [email protected]
|
| 63 |
+
Errors-To: [email protected]
|
| 64 |
+
X-Beenthere: [email protected]
|
| 65 |
+
X-Mailman-Version: 2.0.1
|
| 66 |
+
Precedence: bulk
|
| 67 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 68 |
+
List-Post: <mailto:[email protected]>
|
| 69 |
+
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 70 |
+
<mailto:[email protected]?subject=subscribe>
|
| 71 |
+
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
| 72 |
+
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 73 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 74 |
+
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
| 75 |
+
Date: Thu, 22 Aug 2002 09:12:16 -0500
|
| 76 |
+
|
| 77 |
+
--==_Exmh_1547759024P
|
| 78 |
+
Content-Type: text/plain; charset=us-ascii
|
| 79 |
+
|
| 80 |
+
> From: "J. W. Ballantine" <[email protected]>
|
| 81 |
+
> Date: Wed, 21 Aug 2002 09:51:31 -0400
|
| 82 |
+
>
|
| 83 |
+
> I CVS'ed the unseen/Sequences changes and installed them, and have only one
|
| 84 |
+
> real issue.
|
| 85 |
+
>
|
| 86 |
+
> I use the unseen window rather than the exmh icon, and with the new code
|
| 87 |
+
> I can't seem to be able to. How many unseen when when I have the main window open
|
| 88 |
+
> is not really necessary.
|
| 89 |
+
|
| 90 |
+
hmmm, I stole the code from unseenwin, but I never tested it since I don't use
|
| 91 |
+
that functionality. Consider it on my list of things to check.
|
| 92 |
+
|
| 93 |
+
Chris
|
| 94 |
+
|
| 95 |
+
--
|
| 96 |
+
Chris Garrigues http://www.DeepEddy.Com/~cwg/
|
| 97 |
+
virCIO http://www.virCIO.Com
|
| 98 |
+
716 Congress, Suite 200
|
| 99 |
+
Austin, TX 78701 +1 512 374 0500
|
| 100 |
+
|
| 101 |
+
World War III: The Wrong-Doers Vs. the Evil-Doers.
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
|
| 106 |
+
--==_Exmh_1547759024P
|
| 107 |
+
Content-Type: application/pgp-signature
|
| 108 |
+
|
| 109 |
+
-----BEGIN PGP SIGNATURE-----
|
| 110 |
+
Version: GnuPG v1.0.6 (GNU/Linux)
|
| 111 |
+
Comment: Exmh version 2.2_20000822 06/23/2000
|
| 112 |
+
|
| 113 |
+
iD8DBQE9ZPFAK9b4h5R0IUIRAkjyAJ4jjjhAVRx5FiwuCMa+QBWsbbE2jQCaAj4x
|
| 114 |
+
NhIgYqnx9/1wvdSgesQhMIU=
|
| 115 |
+
=vA3k
|
| 116 |
+
-----END PGP SIGNATURE-----
|
| 117 |
+
|
| 118 |
+
--==_Exmh_1547759024P--
|
| 119 |
+
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
_______________________________________________
|
| 123 |
+
Exmh-workers mailing list
|
| 124 | |
| 125 |
+
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
| 126 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0012.d354b2d2f24d1036caf1374dd94f4c94
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 15:25:29 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id B48D543F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 10:25:28 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:25:28 +0100 (IST)
|
| 10 |
+
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
| 11 |
+
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
| 12 |
+
g7MEI8Z09886 for <[email protected]>; Thu, 22 Aug 2002 15:18:08 +0100
|
| 13 |
+
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
| 14 |
+
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
| 15 |
+
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17hskl-0002W7-00; Thu,
|
| 16 |
+
22 Aug 2002 07:16:03 -0700
|
| 17 |
+
Received: from mail-gr-oh.networksonline.com ([65.163.204.6]) by
|
| 18 |
+
usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
| 19 |
+
17hskN-0008Ox-00 for <[email protected]>;
|
| 20 |
+
Thu, 22 Aug 2002 07:15:39 -0700
|
| 21 |
+
Received: from mordor (mordor.networksonline.com [65.163.204.19]) by
|
| 22 |
+
mail-gr-oh.networksonline.com (Postfix) with SMTP id C06C537794 for
|
| 23 |
+
<[email protected]>; Thu, 22 Aug 2002 10:13:48 -0400
|
| 24 |
+
(EDT)
|
| 25 |
+
Message-Id: <[email protected]>
|
| 26 |
+
From: "NOI Administrator" <[email protected]>
|
| 27 |
+
To: <[email protected]>
|
| 28 |
+
MIME-Version: 1.0
|
| 29 |
+
Content-Type: text/plain; charset="iso-8859-1"
|
| 30 |
+
Content-Transfer-Encoding: 7bit
|
| 31 |
+
X-Priority: 3
|
| 32 |
+
X-Msmail-Priority: Normal
|
| 33 |
+
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
|
| 34 |
+
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4133.2400
|
| 35 |
+
Subject: [SAtalk] SA CGI Configurator Scripts
|
| 36 |
+
Sender: [email protected]
|
| 37 |
+
Errors-To: [email protected]
|
| 38 |
+
X-Beenthere: [email protected]
|
| 39 |
+
X-Mailman-Version: 2.0.9-sf.net
|
| 40 |
+
Precedence: bulk
|
| 41 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 42 |
+
List-Post: <mailto:[email protected]>
|
| 43 |
+
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-talk>,
|
| 44 |
+
<mailto:[email protected]?subject=subscribe>
|
| 45 |
+
List-Id: Talk about SpamAssassin <spamassassin-talk.example.sourceforge.net>
|
| 46 |
+
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-talk>,
|
| 47 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 48 |
+
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-talk>
|
| 49 |
+
X-Original-Date: Thu, 22 Aug 2002 10:16:36 -0400
|
| 50 |
+
Date: Thu, 22 Aug 2002 10:16:36 -0400
|
| 51 |
+
|
| 52 |
+
I have been trying to research via SA mirrors and search engines if a canned
|
| 53 |
+
script exists giving clients access to their user_prefs options via a
|
| 54 |
+
web-based CGI interface. Numerous ISPs provide this feature to clients, but
|
| 55 |
+
so far I can find nothing. Our configuration uses Amavis-Postfix and ClamAV
|
| 56 |
+
for virus filtering and Procmail with SpamAssassin for spam filtering. I
|
| 57 |
+
would prefer not to have to write a script myself, but will appreciate any
|
| 58 |
+
suggestions.
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
-------------------------------------------------------
|
| 63 |
+
This sf.net email is sponsored by: OSDN - Tired of that same old
|
| 64 |
+
cell phone? Get a new here for FREE!
|
| 65 |
+
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
| 66 |
+
_______________________________________________
|
| 67 |
+
Spamassassin-talk mailing list
|
| 68 | |
| 69 |
+
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk
|
| 70 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0013.ff597adee000d073ae72200b0af00cd1
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 15:25:29 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id AE2D043F9B
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 10:25:29 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 15:25:29 +0100 (IST)
|
| 10 |
+
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
| 11 |
+
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
| 12 |
+
g7MENlZ09984 for <[email protected]>; Thu, 22 Aug 2002 15:23:47 +0100
|
| 13 |
+
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
| 14 |
+
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
| 15 |
+
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17hsof-00042r-00; Thu,
|
| 16 |
+
22 Aug 2002 07:20:05 -0700
|
| 17 |
+
Received: from vivi.uptime.at ([62.116.87.11] helo=mail.uptime.at) by
|
| 18 |
+
usw-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id
|
| 19 |
+
17hsoM-0000Ge-00 for <[email protected]>;
|
| 20 |
+
Thu, 22 Aug 2002 07:19:47 -0700
|
| 21 |
+
Received: from [192.168.0.4] (chello062178142216.4.14.vie.surfer.at
|
| 22 |
+
[62.178.142.216]) (authenticated bits=0) by mail.uptime.at (8.12.5/8.12.5)
|
| 23 |
+
with ESMTP id g7MEI7Vp022036 for
|
| 24 |
+
<[email protected]>; Thu, 22 Aug 2002 16:18:07
|
| 25 |
+
+0200
|
| 26 |
+
User-Agent: Microsoft-Entourage/10.0.0.1309
|
| 27 |
+
From: David H=?ISO-8859-1?B?9g==?=hn <[email protected]>
|
| 28 |
+
To: <[email protected]>
|
| 29 |
+
Message-Id: <B98ABFA4.1F87%[email protected]>
|
| 30 |
+
MIME-Version: 1.0
|
| 31 |
+
X-Trusted: YES
|
| 32 |
+
X-From-Laptop: YES
|
| 33 |
+
Content-Type: text/plain; charset="US-ASCII"
|
| 34 |
+
Content-Transfer-Encoding: 7bit
|
| 35 |
+
X-Mailscanner: Nothing found, baby
|
| 36 |
+
Subject: [SAdev] Interesting approach to Spam handling..
|
| 37 |
+
Sender: [email protected]
|
| 38 |
+
Errors-To: [email protected]
|
| 39 |
+
X-Beenthere: [email protected]
|
| 40 |
+
X-Mailman-Version: 2.0.9-sf.net
|
| 41 |
+
Precedence: bulk
|
| 42 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 43 |
+
List-Post: <mailto:[email protected]>
|
| 44 |
+
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
| 45 |
+
<mailto:[email protected]?subject=subscribe>
|
| 46 |
+
List-Id: SpamAssassin Developers <spamassassin-devel.example.sourceforge.net>
|
| 47 |
+
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
| 48 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 49 |
+
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-devel>
|
| 50 |
+
X-Original-Date: Thu, 22 Aug 2002 16:19:48 +0200
|
| 51 |
+
Date: Thu, 22 Aug 2002 16:19:48 +0200
|
| 52 |
+
|
| 53 |
+
Hello, have you seen and discussed this article and his approach?
|
| 54 |
+
|
| 55 |
+
Thank you
|
| 56 |
+
|
| 57 |
+
http://www.paulgraham.com/spam.html
|
| 58 |
+
-- "Hell, there are no rules here-- we're trying to accomplish something."
|
| 59 |
+
-- Thomas Alva Edison
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
-------------------------------------------------------
|
| 65 |
+
This sf.net email is sponsored by: OSDN - Tired of that same old
|
| 66 |
+
cell phone? Get a new here for FREE!
|
| 67 |
+
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
| 68 |
+
_______________________________________________
|
| 69 |
+
Spamassassin-devel mailing list
|
| 70 | |
| 71 |
+
https://lists.sourceforge.net/lists/listinfo/spamassassin-devel
|
| 72 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0014.532e0a17d0674ba7a9baa7b0afe5fb52
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Fri Aug 23 11:06:58 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id ABEFA44165
|
| 6 |
+
for <zzzz@localhost>; Fri, 23 Aug 2002 06:04:55 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Fri, 23 Aug 2002 11:04:55 +0100 (IST)
|
| 10 |
+
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7N3xOZ09392 for
|
| 12 |
+
<[email protected]>; Fri, 23 Aug 2002 04:59:24 +0100
|
| 13 |
+
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
| 14 |
+
listman.redhat.com (Postfix) with ESMTP id 341473EBFF; Thu, 22 Aug 2002
|
| 15 |
+
23:59:28 -0400 (EDT)
|
| 16 |
+
Delivered-To: [email protected]
|
| 17 |
+
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
| 18 |
+
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 492B03FEAF
|
| 19 |
+
for <[email protected]>; Thu, 22 Aug 2002 23:27:20 -0400
|
| 20 |
+
(EDT)
|
| 21 |
+
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
| 22 |
+
id g7N3RHl05019 for [email protected]; Thu, 22 Aug 2002
|
| 23 |
+
23:27:17 -0400
|
| 24 |
+
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
| 25 |
+
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7N3RHY05015 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 23:27:17 -0400
|
| 27 |
+
Received: from ratree.psu.ac.th ([202.28.97.6]) by mx1.example.com
|
| 28 |
+
(8.11.6/8.11.6) with SMTP id g7N3CQl13951 for <[email protected]>;
|
| 29 |
+
Thu, 22 Aug 2002 23:12:27 -0400
|
| 30 |
+
Received: from delta.cs.mu.OZ.AU (delta.coe.psu.ac.th [172.30.0.98]) by
|
| 31 |
+
ratree.psu.ac.th (8.11.6/8.11.6) with ESMTP id g7N3QUl20135;
|
| 32 |
+
Fri, 23 Aug 2002 10:26:30 +0700 (ICT)
|
| 33 |
+
Received: from munnari.OZ.AU (localhost [127.0.0.1]) by delta.cs.mu.OZ.AU
|
| 34 |
+
(8.11.6/8.11.6) with ESMTP id g7MEtIW14737; Thu, 22 Aug 2002 21:55:18
|
| 35 |
+
+0700 (ICT)
|
| 36 |
+
From: Robert Elz <[email protected]>
|
| 37 |
+
To: Chris Garrigues <[email protected]>
|
| 38 |
+
Cc: [email protected]
|
| 39 |
+
Subject: Re: New Sequences Window
|
| 40 |
+
In-Reply-To: <[email protected]>
|
| 41 |
+
References: <[email protected]>
|
| 42 | |
| 43 | |
| 44 |
+
MIME-Version: 1.0
|
| 45 |
+
Content-Type: text/plain; charset=us-ascii
|
| 46 |
+
Message-Id: <[email protected]>
|
| 47 |
+
X-Loop: [email protected]
|
| 48 |
+
Sender: [email protected]
|
| 49 |
+
Errors-To: [email protected]
|
| 50 |
+
X-Beenthere: [email protected]
|
| 51 |
+
X-Mailman-Version: 2.0.1
|
| 52 |
+
Precedence: bulk
|
| 53 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 54 |
+
List-Post: <mailto:[email protected]>
|
| 55 |
+
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 56 |
+
<mailto:[email protected]?subject=subscribe>
|
| 57 |
+
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
| 58 |
+
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 59 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 60 |
+
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
| 61 |
+
Date: Thu, 22 Aug 2002 21:55:18 +0700
|
| 62 |
+
|
| 63 |
+
Date: Wed, 21 Aug 2002 10:40:39 -0500
|
| 64 |
+
From: Chris Garrigues <[email protected]>
|
| 65 |
+
Message-ID: <[email protected]>
|
| 66 |
+
|
| 67 |
+
| The background color in this window is the same as the background
|
| 68 |
+
| color in the ftoc.
|
| 69 |
+
|
| 70 |
+
That's what I'd like to vary - particularly as the ftoc background isn't
|
| 71 |
+
constant - messages in the unseen sequence have a different background
|
| 72 |
+
than others.
|
| 73 |
+
|
| 74 |
+
In the ftoc that's fine, but in the sequences window, it isn't needed.
|
| 75 |
+
unseen already has a different foreground there (no problem with that),
|
| 76 |
+
it doesn't need a different background as well.
|
| 77 |
+
|
| 78 |
+
I'll play about a bit with this, and with making it vertical instead of
|
| 79 |
+
horizontal, and see what turns up.
|
| 80 |
+
|
| 81 |
+
| The only sequences that are defined there are sequences which are defined
|
| 82 |
+
| in app-defaults-color or ~/exmh/exmh-defaults-color.
|
| 83 |
+
|
| 84 |
+
OK.
|
| 85 |
+
|
| 86 |
+
| I've been thinking about how to dynamically generate highlighting for
|
| 87 |
+
| other sequences, but haven't got that figured out yet.
|
| 88 |
+
|
| 89 |
+
In this case, highlighting wasn't what I was most concerned about.
|
| 90 |
+
A method to get messages in & out of sequences comes first, how it
|
| 91 |
+
displays is a secondary consideration. But as a suggestion, have an
|
| 92 |
+
"all unknown" sequence highlight, any message in a sequence which has
|
| 93 |
+
no defined highlighting (where defined includes defined to not be treated
|
| 94 |
+
specially) gets highlighted the same way (maybe something as boring as
|
| 95 |
+
a dark brown text colour - almost indistinguishable from the normal black)
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
| > > Any chance of making the current message a little brighter background?
|
| 99 |
+
|
|
| 100 |
+
| I don't see any reason why not. Experiment and let me know what works for you.
|
| 101 |
+
|
| 102 |
+
Done some of that. First, the most significant change came from changing
|
| 103 |
+
relief from raised to sunken. I don't know why, but it just looks better
|
| 104 |
+
(for me anyway). But even with that, cur and unseen are still just a
|
| 105 |
+
bit too similar. I ended up using
|
| 106 |
+
|
| 107 |
+
*sequence_cur: -background {PaleGoldenrod} -relief sunken -borderwidth 2
|
| 108 |
+
|
| 109 |
+
The unnecessary braces are just because some of the colours I was using
|
| 110 |
+
had spaces in their names. PaleGoldenrod translates as #eee8aa which
|
| 111 |
+
is probably safer for generic use.
|
| 112 |
+
|
| 113 |
+
kre
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
_______________________________________________
|
| 118 |
+
Exmh-workers mailing list
|
| 119 | |
| 120 |
+
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
| 121 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0015.a9ff8d7550759f6ab62cc200bdf156e7
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 16:06:55 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 6B14047C66
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 11:06:53 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:06:53 +0100 (IST)
|
| 10 |
+
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
| 11 |
+
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
| 12 |
+
g7MF4sZ11366 for <[email protected]>; Thu, 22 Aug 2002 16:04:54 +0100
|
| 13 |
+
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
| 14 |
+
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
| 15 |
+
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17htRL-0005ql-00; Thu,
|
| 16 |
+
22 Aug 2002 08:00:03 -0700
|
| 17 |
+
Received: from www.ctyme.com ([209.237.228.10] helo=darwin.ctyme.com) by
|
| 18 |
+
usw-sf-list1.sourceforge.net with esmtp (Cipher TLSv1:DES-CBC3-SHA:168)
|
| 19 |
+
(Exim 3.31-VA-mm2 #1 (Debian)) id 17htQZ-0001jw-00 for
|
| 20 |
+
<[email protected]>; Thu, 22 Aug 2002 07:59:15
|
| 21 |
+
-0700
|
| 22 |
+
Received: from m206-56.dsl.tsoft.com ([198.144.206.56] helo=perkel.com) by
|
| 23 |
+
darwin.ctyme.com with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id
|
| 24 |
+
17htRO-0003Mw-00 for [email protected];
|
| 25 |
+
Thu, 22 Aug 2002 08:00:06 -0700
|
| 26 |
+
Message-Id: <[email protected]>
|
| 27 |
+
From: Marc Perkel <[email protected]>
|
| 28 |
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1b)
|
| 29 |
+
Gecko/20020721
|
| 30 |
+
X-Accept-Language: en-us, en
|
| 31 |
+
MIME-Version: 1.0
|
| 32 |
+
To: [email protected]
|
| 33 |
+
Content-Type: text/plain; charset=us-ascii; format=flowed
|
| 34 |
+
Content-Transfer-Encoding: 7bit
|
| 35 |
+
Subject: [SAdev] Party in San Francisco tonight
|
| 36 |
+
Sender: [email protected]
|
| 37 |
+
Errors-To: [email protected]
|
| 38 |
+
X-Beenthere: [email protected]
|
| 39 |
+
X-Mailman-Version: 2.0.9-sf.net
|
| 40 |
+
Precedence: bulk
|
| 41 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 42 |
+
List-Post: <mailto:[email protected]>
|
| 43 |
+
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
| 44 |
+
<mailto:[email protected]?subject=subscribe>
|
| 45 |
+
List-Id: SpamAssassin Developers <spamassassin-devel.example.sourceforge.net>
|
| 46 |
+
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
| 47 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 48 |
+
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-devel>
|
| 49 |
+
X-Original-Date: Thu, 22 Aug 2002 07:58:42 -0700
|
| 50 |
+
Date: Thu, 22 Aug 2002 07:58:42 -0700
|
| 51 |
+
|
| 52 |
+
I don't know how make of you are in the Bay Area but EFF is having a benifit
|
| 53 |
+
party ast the DNA Lounge in San Francisco tonight. Wil Weaton (Wesley Crussher
|
| 54 |
+
from star Trek TNG) will fight Barney the Dinasour.
|
| 55 |
+
|
| 56 |
+
Come on by if you're not doing anything.
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
-------------------------------------------------------
|
| 61 |
+
This sf.net email is sponsored by: OSDN - Tired of that same old
|
| 62 |
+
cell phone? Get a new here for FREE!
|
| 63 |
+
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
| 64 |
+
_______________________________________________
|
| 65 |
+
Spamassassin-devel mailing list
|
| 66 | |
| 67 |
+
https://lists.sourceforge.net/lists/listinfo/spamassassin-devel
|
| 68 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0016.d82758030e304d41fb3f4ebbb7d9dd91
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 16:27:25 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id DF2DD43F9B
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 11:27:24 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:27:24 +0100 (IST)
|
| 10 |
+
Received: from usw-sf-list2.sourceforge.net (usw-sf-fw2.sourceforge.net
|
| 11 |
+
[216.136.171.252]) by dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id
|
| 12 |
+
g7MFJHZ11964 for <[email protected]>; Thu, 22 Aug 2002 16:19:17 +0100
|
| 13 |
+
Received: from usw-sf-list1-b.sourceforge.net ([10.3.1.13]
|
| 14 |
+
helo=usw-sf-list1.sourceforge.net) by usw-sf-list2.sourceforge.net with
|
| 15 |
+
esmtp (Exim 3.31-VA-mm2 #1 (Debian)) id 17htfq-0001G0-00; Thu,
|
| 16 |
+
22 Aug 2002 08:15:02 -0700
|
| 17 |
+
Received: from www.ctyme.com ([209.237.228.10] helo=darwin.ctyme.com) by
|
| 18 |
+
usw-sf-list1.sourceforge.net with esmtp (Cipher TLSv1:DES-CBC3-SHA:168)
|
| 19 |
+
(Exim 3.31-VA-mm2 #1 (Debian)) id 17htfa-0006Zq-00 for
|
| 20 |
+
<[email protected]>; Thu, 22 Aug 2002 08:14:47
|
| 21 |
+
-0700
|
| 22 |
+
Received: from m206-56.dsl.tsoft.com ([198.144.206.56] helo=perkel.com) by
|
| 23 |
+
darwin.ctyme.com with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id
|
| 24 |
+
17htgP-0004te-00; Thu, 22 Aug 2002 08:15:37 -0700
|
| 25 |
+
Message-Id: <[email protected]>
|
| 26 |
+
From: Marc Perkel <[email protected]>
|
| 27 |
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.1b)
|
| 28 |
+
Gecko/20020721
|
| 29 |
+
X-Accept-Language: en-us, en
|
| 30 |
+
MIME-Version: 1.0
|
| 31 |
+
To: Theo Van Dinter <[email protected]>
|
| 32 |
+
Cc: [email protected]
|
| 33 |
+
Subject: Re: [SAdev] Live Rule Updates after Release ???
|
| 34 |
+
References: <[email protected]> <[email protected]>
|
| 35 |
+
Content-Type: text/plain; charset=us-ascii; format=flowed
|
| 36 |
+
Content-Transfer-Encoding: 7bit
|
| 37 |
+
Sender: [email protected]
|
| 38 |
+
Errors-To: [email protected]
|
| 39 |
+
X-Beenthere: [email protected]
|
| 40 |
+
X-Mailman-Version: 2.0.9-sf.net
|
| 41 |
+
Precedence: bulk
|
| 42 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 43 |
+
List-Post: <mailto:[email protected]>
|
| 44 |
+
List-Subscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
| 45 |
+
<mailto:[email protected]?subject=subscribe>
|
| 46 |
+
List-Id: SpamAssassin Developers <spamassassin-devel.example.sourceforge.net>
|
| 47 |
+
List-Unsubscribe: <https://example.sourceforge.net/lists/listinfo/spamassassin-devel>,
|
| 48 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 49 |
+
List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=spamassassin-devel>
|
| 50 |
+
X-Original-Date: Thu, 22 Aug 2002 08:14:12 -0700
|
| 51 |
+
Date: Thu, 22 Aug 2002 08:14:12 -0700
|
| 52 |
+
|
| 53 |
+
Yes - great minds think alike. But even withput eval rules it would be very
|
| 54 |
+
useful. It would allow us to respond quickly to spammer's tricks.
|
| 55 |
+
|
| 56 |
+
Theo Van Dinter wrote:
|
| 57 |
+
> On Thu, Aug 22, 2002 at 07:27:52AM -0700, Marc Perkel wrote:
|
| 58 |
+
>
|
| 59 |
+
>>Has anyone though of the idea of live updates of rules after release? The
|
| 60 |
+
>>idea being that the user can run a cron job once a week or so and get the
|
| 61 |
+
>>new default rule set. This would allow us to react faster to:
|
| 62 |
+
>
|
| 63 |
+
>
|
| 64 |
+
> I suggested this a few months ago. I don't remember the details of what
|
| 65 |
+
> came out of it except that it would only be useful for non-eval rules
|
| 66 |
+
> since those require code changes.
|
| 67 |
+
>
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
-------------------------------------------------------
|
| 72 |
+
This sf.net email is sponsored by: OSDN - Tired of that same old
|
| 73 |
+
cell phone? Get a new here for FREE!
|
| 74 |
+
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
|
| 75 |
+
_______________________________________________
|
| 76 |
+
Spamassassin-devel mailing list
|
| 77 | |
| 78 |
+
https://lists.sourceforge.net/lists/listinfo/spamassassin-devel
|
| 79 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0017.d81093a2182fc9135df6d9158a8ebfd6
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 16:27:21 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 7A28A43F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 11:27:21 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:27:21 +0100 (IST)
|
| 10 |
+
Received: from lugh.tuatha.org ([email protected] [194.125.145.45]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MFQmZ12280 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 16:26:48 +0100
|
| 13 |
+
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
| 14 |
+
(8.9.3/8.9.3) with ESMTP id QAA07188; Thu, 22 Aug 2002 16:25:32 +0100
|
| 15 |
+
Received: from moe.jinny.ie ([193.120.171.3]) by lugh.tuatha.org
|
| 16 |
+
(8.9.3/8.9.3) with ESMTP id QAA07145 for <[email protected]>; Thu,
|
| 17 |
+
22 Aug 2002 16:25:24 +0100
|
| 18 |
+
X-Authentication-Warning: lugh.tuatha.org: Host [193.120.171.3] claimed to
|
| 19 |
+
be moe.jinny.ie
|
| 20 |
+
Received: from jlooney.jinny.ie (unknown [193.120.171.2]) by moe.jinny.ie
|
| 21 |
+
(Postfix) with ESMTP id 938BD7FC46; Thu, 22 Aug 2002 16:25:23 +0100 (IST)
|
| 22 |
+
Received: by jlooney.jinny.ie (Postfix, from userid 500) id 4F57189D;
|
| 23 |
+
Thu, 22 Aug 2002 16:25:45 +0100 (IST)
|
| 24 |
+
Date: Thu, 22 Aug 2002 16:25:45 +0100
|
| 25 |
+
From: "John P. Looney" <[email protected]>
|
| 26 |
+
To: [email protected]
|
| 27 |
+
Cc: [email protected]
|
| 28 |
+
Message-Id: <[email protected]>
|
| 29 |
+
Reply-To: [email protected]
|
| 30 |
+
Mail-Followup-To: [email protected], [email protected]
|
| 31 |
+
References: <[email protected]>
|
| 32 |
+
<1029624922.14769.119.camel@atherton> <[email protected]>
|
| 33 |
+
MIME-Version: 1.0
|
| 34 |
+
Content-Type: text/plain; charset=us-ascii
|
| 35 |
+
Content-Disposition: inline
|
| 36 |
+
In-Reply-To: <[email protected]>
|
| 37 |
+
User-Agent: Mutt/1.4i
|
| 38 |
+
X-Os: Red Hat Linux 7.3/Linux 2.4.18-3
|
| 39 |
+
X-Url: http://www.redbrick.dcu.ie/~valen
|
| 40 |
+
X-Gnupg-Publickey: http://www.redbrick.dcu.ie/~valen/public.asc
|
| 41 |
+
Subject: [ILUG] Re: Problems with RAID1 on cobalt raq3
|
| 42 |
+
Sender: [email protected]
|
| 43 |
+
Errors-To: [email protected]
|
| 44 |
+
X-Mailman-Version: 1.1
|
| 45 |
+
Precedence: bulk
|
| 46 |
+
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
| 47 |
+
X-Beenthere: [email protected]
|
| 48 |
+
|
| 49 |
+
On Mon, Aug 19, 2002 at 03:08:16PM +0100, John P. Looney mentioned:
|
| 50 |
+
> This is likely because to get it to boot, like the cobalt, I'm actually
|
| 51 |
+
> passing root=/dev/hda5 to the kernel, not /dev/md0.
|
| 52 |
+
|
| 53 |
+
Just to solve this...the reason I was booting the box with
|
| 54 |
+
root=/dev/hda5, not /dev/md0 was because /dev/md0 wasn't booting - it
|
| 55 |
+
would barf with 'can't find init'.
|
| 56 |
+
|
| 57 |
+
It turns out that this is because I was populating md0 with tar. Which
|
| 58 |
+
seems to have 'issues' with crosslinked files - for instance, it was
|
| 59 |
+
trying to make a hard link of glibc.so to hda - and failing. It was only
|
| 60 |
+
as I did it again with a friend present, that he spotted the errors, and
|
| 61 |
+
queried them. We noticed that the hard linked files just didn't exist on
|
| 62 |
+
the new rootfs.
|
| 63 |
+
|
| 64 |
+
When we duplicated the filesystems with dump instead of tar, it worked
|
| 65 |
+
fine, I was able to tell lilo to use root=/dev/md0 and everything worked.
|
| 66 |
+
|
| 67 |
+
Woohoo.
|
| 68 |
+
|
| 69 |
+
Kate
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
--
|
| 73 |
+
Irish Linux Users' Group: [email protected]
|
| 74 |
+
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
| 75 |
+
List maintainer: [email protected]
|
| 76 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0018.ba70ecbeea6f427b951067f34e23bae6
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 16:37:36 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 50AF343F9B
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 11:37:35 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:37:35 +0100 (IST)
|
| 10 |
+
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MFZLZ12577 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 16:35:22 +0100
|
| 13 |
+
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
| 14 |
+
listman.redhat.com (Postfix) with ESMTP id 51F5140D92; Thu, 22 Aug 2002
|
| 15 |
+
11:35:26 -0400 (EDT)
|
| 16 |
+
Delivered-To: [email protected]
|
| 17 |
+
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
| 18 |
+
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 6EED940E00
|
| 19 |
+
for <[email protected]>; Thu, 22 Aug 2002 11:26:01 -0400
|
| 20 |
+
(EDT)
|
| 21 |
+
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
| 22 |
+
id g7MFPwB25414 for [email protected]; Thu, 22 Aug 2002
|
| 23 |
+
11:25:58 -0400
|
| 24 |
+
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
| 25 |
+
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MFPwY25410 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 11:25:58 -0400
|
| 27 |
+
Received: from austin-jump.vircio.com
|
| 28 |
+
(IDENT:[email protected]
|
| 29 |
+
[192.12.3.99]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id g7MFBTl04916
|
| 30 |
+
for <[email protected]>; Thu, 22 Aug 2002 11:11:29 -0400
|
| 31 |
+
Received: (qmail 4141 invoked by uid 104); 22 Aug 2002 15:25:57 -0000
|
| 32 |
+
Received: from [email protected] by localhost.localdomain with
|
| 33 |
+
qmail-scanner-0.90 (uvscan: v4.1.60/v4218. . Clean. Processed in 0.327895
|
| 34 |
+
secs); 22/08/2002 10:25:57
|
| 35 |
+
Received: from deepeddy.vircio.com (@[10.1.2.1]) (envelope-sender
|
| 36 |
+
<[email protected]>) by austin-jump.vircio.com (qmail-ldap-1.03) with
|
| 37 |
+
SMTP for <[email protected]>; 22 Aug 2002 15:25:56 -0000
|
| 38 |
+
Received: (qmail 13189 invoked from network); 22 Aug 2002 15:25:53 -0000
|
| 39 |
+
Received: from localhost (HELO deepeddy.vircio.com)
|
| 40 |
+
(?AL1b20iTMIHwZbG9ZCdQYQG3nsIe5jbe?@[127.0.0.1]) (envelope-sender
|
| 41 |
+
<[email protected]>) by localhost (qmail-ldap-1.03) with SMTP for
|
| 42 |
+
<[email protected]>; 22 Aug 2002 15:25:53 -0000
|
| 43 |
+
X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4
|
| 44 |
+
To: Robert Elz <[email protected]>, [email protected]
|
| 45 |
+
Subject: Re: New Sequences Window
|
| 46 |
+
In-Reply-To: <[email protected]>
|
| 47 |
+
References: <[email protected]>
|
| 48 | |
| 49 | |
| 50 | |
| 51 |
+
X-Url: http://www.DeepEddy.Com/~cwg
|
| 52 |
+
X-Image-Url: http://www.DeepEddy.Com/~cwg/chris.gif
|
| 53 |
+
MIME-Version: 1.0
|
| 54 |
+
Content-Type: multipart/signed;
|
| 55 |
+
boundary="==_Exmh_-1317289252P";
|
| 56 |
+
micalg=pgp-sha1;
|
| 57 |
+
protocol="application/pgp-signature"
|
| 58 |
+
Content-Transfer-Encoding: 7bit
|
| 59 |
+
Message-Id: <[email protected]>
|
| 60 |
+
From: Chris Garrigues <[email protected]>
|
| 61 |
+
X-Delivery-Agent: TMDA/0.57
|
| 62 |
+
Reply-To: Chris Garrigues <[email protected]>
|
| 63 |
+
X-Loop: [email protected]
|
| 64 |
+
Sender: [email protected]
|
| 65 |
+
Errors-To: [email protected]
|
| 66 |
+
X-Beenthere: [email protected]
|
| 67 |
+
X-Mailman-Version: 2.0.1
|
| 68 |
+
Precedence: bulk
|
| 69 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 70 |
+
List-Post: <mailto:[email protected]>
|
| 71 |
+
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 72 |
+
<mailto:[email protected]?subject=subscribe>
|
| 73 |
+
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
| 74 |
+
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 75 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 76 |
+
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
| 77 |
+
Date: Thu, 22 Aug 2002 10:25:52 -0500
|
| 78 |
+
|
| 79 |
+
--==_Exmh_-1317289252P
|
| 80 |
+
Content-Type: text/plain; charset=us-ascii
|
| 81 |
+
|
| 82 |
+
> From: Chris Garrigues <[email protected]>
|
| 83 |
+
> Date: Wed, 21 Aug 2002 10:40:39 -0500
|
| 84 |
+
>
|
| 85 |
+
> > From: Chris Garrigues <[email protected]>
|
| 86 |
+
> > Date: Wed, 21 Aug 2002 10:17:45 -0500
|
| 87 |
+
> >
|
| 88 |
+
> > Ouch...I'll get right on it.
|
| 89 |
+
> >
|
| 90 |
+
> > > From: Robert Elz <[email protected]>
|
| 91 |
+
> > > Date: Wed, 21 Aug 2002 19:30:01 +0700
|
| 92 |
+
> > >
|
| 93 |
+
> > > Any chance of having that lengthen instead? I like all my exmh stuff
|
| 94 |
+
> > > in nice columns (fits the display better). That is, I use the detache
|
| 95 |
+
> d
|
| 96 |
+
> > > folder list, one column. The main exmh window takes up full screen,
|
| 97 |
+
> > > top to bottom, but less than half the width, etc...
|
| 98 |
+
>
|
| 99 |
+
> I thought about that. The first order approximation would be to just add
|
| 100 |
+
> using pack .... -side top instead of pack ... -side left, however, since their
|
| 101 |
+
> each a different width, it would look funny.
|
| 102 |
+
|
| 103 |
+
I've done this. It's not as pretty as I think it should be, but it works.
|
| 104 |
+
I'm going to leave the cosmetic issues to others. When I update the
|
| 105 |
+
documentation, I'll add this to the exmh.TODO file.
|
| 106 |
+
|
| 107 |
+
I'm leaving for a 2 1/2 week vacation in a week, so this is the last new
|
| 108 |
+
functionality I'm going to add for a while. Also, I now have pretty much
|
| 109 |
+
everything in there that I want for my own use, so I'm probably pretty much
|
| 110 |
+
done. I'll work on bug fixes and documentation before my vacation, and
|
| 111 |
+
hopefully do nothing more afterwards.
|
| 112 |
+
|
| 113 |
+
Chris
|
| 114 |
+
|
| 115 |
+
--
|
| 116 |
+
Chris Garrigues http://www.DeepEddy.Com/~cwg/
|
| 117 |
+
virCIO http://www.virCIO.Com
|
| 118 |
+
716 Congress, Suite 200
|
| 119 |
+
Austin, TX 78701 +1 512 374 0500
|
| 120 |
+
|
| 121 |
+
World War III: The Wrong-Doers Vs. the Evil-Doers.
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
--==_Exmh_-1317289252P
|
| 127 |
+
Content-Type: application/pgp-signature
|
| 128 |
+
|
| 129 |
+
-----BEGIN PGP SIGNATURE-----
|
| 130 |
+
Version: GnuPG v1.0.6 (GNU/Linux)
|
| 131 |
+
Comment: Exmh version 2.2_20000822 06/23/2000
|
| 132 |
+
|
| 133 |
+
iD8DBQE9ZQJ/K9b4h5R0IUIRAiPuAJwL4mUus5whLNQZC8MsDlGpEdKNrACcDfZH
|
| 134 |
+
PcGgN9frLIM+C5Z3vagi2wE=
|
| 135 |
+
=qJoJ
|
| 136 |
+
-----END PGP SIGNATURE-----
|
| 137 |
+
|
| 138 |
+
--==_Exmh_-1317289252P--
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
_______________________________________________
|
| 143 |
+
Exmh-workers mailing list
|
| 144 | |
| 145 |
+
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
| 146 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0019.a8a1b2767e83b3be653e4af0148e1897
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 16:37:41 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 5DB9843F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 11:37:40 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 16:37:40 +0100 (IST)
|
| 10 |
+
Received: from xent.com ([64.161.22.236]) by dogma.slashnull.org
|
| 11 |
+
(8.11.6/8.11.6) with ESMTP id g7MFbVZ12617 for <[email protected]>;
|
| 12 |
+
Thu, 22 Aug 2002 16:37:32 +0100
|
| 13 |
+
Received: from lair.xent.com (localhost [127.0.0.1]) by xent.com (Postfix)
|
| 14 |
+
with ESMTP id D8D5029409A; Thu, 22 Aug 2002 08:35:09 -0700 (PDT)
|
| 15 |
+
Delivered-To: [email protected]
|
| 16 |
+
Received: from sunserver.permafrost.net (u172n16.hfx.eastlink.ca
|
| 17 |
+
[24.222.172.16]) by xent.com (Postfix) with ESMTP id 3703F294099 for
|
| 18 |
+
<[email protected]>; Thu, 22 Aug 2002 08:34:40 -0700 (PDT)
|
| 19 |
+
Received: from [192.168.123.179] (helo=permafrost.net) by
|
| 20 |
+
sunserver.permafrost.net with esmtp (Exim 3.35 #1 (Debian)) id
|
| 21 |
+
17htxj-0008Ad-00 for <[email protected]>; Thu, 22 Aug 2002 12:33:31 -0300
|
| 22 |
+
Message-Id: <[email protected]>
|
| 23 |
+
From: Owen Byrne <[email protected]>
|
| 24 |
+
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.0.0) Gecko/20020530
|
| 25 |
+
X-Accept-Language: en-us, en
|
| 26 |
+
MIME-Version: 1.0
|
| 27 |
+
To: [email protected]
|
| 28 |
+
Subject: The case for spam
|
| 29 |
+
Content-Type: text/plain; charset=us-ascii; format=flowed
|
| 30 |
+
Content-Transfer-Encoding: 7bit
|
| 31 |
+
Sender: [email protected]
|
| 32 |
+
Errors-To: [email protected]
|
| 33 |
+
X-Beenthere: [email protected]
|
| 34 |
+
X-Mailman-Version: 2.0.11
|
| 35 |
+
Precedence: bulk
|
| 36 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 37 |
+
List-Post: <mailto:[email protected]>
|
| 38 |
+
List-Subscribe: <http://xent.com/mailman/listinfo/fork>, <mailto:[email protected]?subject=subscribe>
|
| 39 |
+
List-Id: Friends of Rohit Khare <fork.xent.com>
|
| 40 |
+
List-Unsubscribe: <http://xent.com/mailman/listinfo/fork>,
|
| 41 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 42 |
+
List-Archive: <http://xent.com/pipermail/fork/>
|
| 43 |
+
Date: Thu, 22 Aug 2002 12:39:47 -0300
|
| 44 |
+
|
| 45 |
+
SpamAssassin is hurting democracy!
|
| 46 |
+
Owen
|
| 47 |
+
---------------------------------------------------------------------------------------------------------------------
|
| 48 |
+
|
| 49 |
+
http://www.bayarea.com/mld/mercurynews/news/opinion/3900215.htm
|
| 50 |
+
|
| 51 |
+
Internet can level the political playing field
|
| 52 |
+
By Mike McCurry and Larry Purpuro
|
| 53 |
+
|
| 54 |
+
NOT many months from now, people across the country will experience one
|
| 55 |
+
of the great recurring features of American democracy. At shopping
|
| 56 |
+
malls, on factory floors, at church socials and even on our front
|
| 57 |
+
stoops, we will be approached by individuals who want to represent us in
|
| 58 |
+
public office. While chances are high that we won't know them
|
| 59 |
+
personally, they will walk up to us, offer a handshake and a flier and
|
| 60 |
+
ask for our votes.
|
| 61 |
+
|
| 62 |
+
Just as technology is affecting every other area of communication, it
|
| 63 |
+
has begun to affect the way political candidates communicate with voters.
|
| 64 |
+
|
| 65 |
+
In this year's GOP gubernatorial primary, California Secretary of State
|
| 66 |
+
Bill Jones, who faced better-funded candidates, acquired the e-mail
|
| 67 |
+
addresses of more than a million potential California voters and sent
|
| 68 |
+
each an unsolicited e-mail asking for support.
|
| 69 |
+
|
| 70 |
+
That day, he might have chosen any of the more traditional -- and more
|
| 71 |
+
expensive -- methods of contacting voters, such as direct mail, radio
|
| 72 |
+
spots or TV ads. But he spent only about 2 cents per message, instead of
|
| 73 |
+
35 cents or more per message for direct mail or in another medium.
|
| 74 |
+
|
| 75 |
+
Had Jones chosen direct mail, radio or TV, that communication would have
|
| 76 |
+
been equally ``unsolicited,'' as defined in the e-mail world. Few voters
|
| 77 |
+
would have ``opted in'' to receive campaign information from Jones
|
| 78 |
+
through any of those channels.
|
| 79 |
+
|
| 80 |
+
The response to Jones' e-mail effort, however, was swift and intense. He
|
| 81 |
+
was lambasted by anti-spam advocates, and media coverage was almost
|
| 82 |
+
entirely negative. To be fair, some of Jones' tactics could have been
|
| 83 |
+
refined. He used a less-than-perfect list and no standard-practice
|
| 84 |
+
``paid for'' disclaimer in the message.
|
| 85 |
+
|
| 86 |
+
His detractors, however, attacked him not for his tactical miscues but
|
| 87 |
+
because the e-mail was sent unsolicited. In fact, Jones' online campaign
|
| 88 |
+
may have been his most visible asset. In an era of cynicism toward money
|
| 89 |
+
in politics -- money typically spent on other unsolicited communication
|
| 90 |
+
mediums -- Jones tried to level the playing field.
|
| 91 |
+
|
| 92 |
+
No one likes commercial spam. It is irrelevant and untargeted and can be
|
| 93 |
+
highly intrusive and even offensive. But as a sophisticated society,
|
| 94 |
+
it's time to differentiate commercial spam from very different
|
| 95 |
+
unsolicited e-mail sent by political candidates to voters.
|
| 96 |
+
|
| 97 |
+
The debate is particularly relevant in light of legislation in Congress
|
| 98 |
+
that would constitute the first federal law to directly address spam. We
|
| 99 |
+
believe e-mail is no more intrusive than direct mail, telemarketing or
|
| 100 |
+
TV advertising when it comes to politicians seeking to reach voters. A
|
| 101 |
+
simple link in good e-mail campaigns allows recipients to opt out of
|
| 102 |
+
future mailings. Direct mail takes at least a phone call or stamp to be
|
| 103 |
+
taken off a list, and viewers must repeatedly endure TV ads.
|
| 104 |
+
|
| 105 |
+
When a candidate lacks a large campaign war chest, he or she can use the
|
| 106 |
+
Internet to provide constituents with information to better prepare them
|
| 107 |
+
to perform their civic duty of casting educated votes. With more than 60
|
| 108 |
+
percent of all potential voters in this country possessing e-mail
|
| 109 |
+
accounts, it makes sense that political candidates use this medium.
|
| 110 |
+
|
| 111 |
+
Candidates might avoid some of the tactical problems encountered by the
|
| 112 |
+
Jones campaign if they use the technologies available today that better
|
| 113 |
+
ensure quality of e-mail lists and target content to specific recipient
|
| 114 |
+
groups.
|
| 115 |
+
|
| 116 |
+
But the broader point remains. When a political candidate sends a voter
|
| 117 |
+
an e-mail, that recipient can choose to delete the message without
|
| 118 |
+
opening it, unsubscribe from the list, read it or even reply and engage
|
| 119 |
+
the sender. That choice should belong to the voter -- not to anti-spam
|
| 120 |
+
advocates whose efforts are better focused on commercial e-mail.
|
| 121 |
+
Political candidates should be free to communicate with voters as best
|
| 122 |
+
they can, and let voters decide what to do with that information.
|
| 123 |
+
|
| 124 |
+
|
| 125 |
+
--------------------------------------------------------------------------------
|
| 126 |
+
Mike McCurry, former press secretary for President Clinton, is CEO of an
|
| 127 |
+
advocacy management and communications software company. Larry Purpuro,
|
| 128 |
+
the former Republican National Committee deputy chief of staff, is
|
| 129 |
+
founder and president of a political e-marketing firm. This was written
|
| 130 |
+
for the Los Angeles Times.
|
| 131 |
+
|
| 132 |
+
http://xent.com/mailman/listinfo/fork
|
| 133 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0020.ef397cef16f8041242e3b6560e168053
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:08:44 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id B989743F9B
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:08:43 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:08:43 +0100 (IST)
|
| 10 |
+
Received: from dogma.slashnull.org (localhost [127.0.0.1]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MG0MZ13369;
|
| 12 |
+
Thu, 22 Aug 2002 17:00:22 +0100
|
| 13 |
+
Received: from hawk.dcu.ie (mail.dcu.ie [136.206.1.5]) by
|
| 14 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MFxBZ13285 for
|
| 15 |
+
<[email protected]>; Thu, 22 Aug 2002 16:59:11 +0100
|
| 16 |
+
Received: from dcu.ie (136.206.21.115) by hawk.dcu.ie (6.0.040) id
|
| 17 |
+
3D6203D3000136AD for [email protected]; Thu, 22 Aug 2002 16:59:17 +0100
|
| 18 |
+
Message-Id: <[email protected]>
|
| 19 |
+
From: Bernard Michael Tyers <[email protected]>
|
| 20 |
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0)
|
| 21 |
+
Gecko/20020530
|
| 22 |
+
X-Accept-Language: ga, en-ie, eu, en-us, de-at, as
|
| 23 |
+
MIME-Version: 1.0
|
| 24 |
+
To: iiu <[email protected]>
|
| 25 |
+
Content-Type: text/plain; charset=us-ascii; format=flowed
|
| 26 |
+
Content-Transfer-Encoding: 7bit
|
| 27 |
+
Subject: [IIU] Eircom aDSL Nat'ing
|
| 28 |
+
Sender: [email protected]
|
| 29 |
+
Errors-To: [email protected]
|
| 30 |
+
X-Beenthere: [email protected]
|
| 31 |
+
X-Mailman-Version: 2.0.10
|
| 32 |
+
Precedence: bulk
|
| 33 |
+
Reply-To: [email protected]
|
| 34 |
+
List-Unsubscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
| 35 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 36 |
+
List-Id: Irish Internet Users <iiu.iiu.taint.org>
|
| 37 |
+
List-Post: <mailto:[email protected]>
|
| 38 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 39 |
+
List-Subscribe: <http://iiu.taint.org/mailman/listinfo/iiu>,
|
| 40 |
+
<mailto:[email protected]?subject=subscribe>
|
| 41 |
+
List-Archive: <http://iiu.taint.org/pipermail/iiu/>
|
| 42 |
+
Date: Thu, 22 Aug 2002 16:58:37 +0100
|
| 43 |
+
|
| 44 |
+
Hi all,
|
| 45 |
+
|
| 46 |
+
apologies for the possible silly question (i don't think it is, but),
|
| 47 |
+
but is Eircom's aDSL service NAT'ed?
|
| 48 |
+
|
| 49 |
+
and what implications would that have for VoIP? I know there are
|
| 50 |
+
difficulties with VoIP or connecting to clients connected to a NAT'ed
|
| 51 |
+
network from the internet wild (i.e. machines with static, real IPs)
|
| 52 |
+
|
| 53 |
+
any help pointers would be helpful,
|
| 54 |
+
|
| 55 |
+
cheers
|
| 56 |
+
--
|
| 57 |
+
rgrds,
|
| 58 |
+
Bernard
|
| 59 |
+
--
|
| 60 |
+
Bernard Tyers * National Centre for Sensor Research * P:353-1-700-5273 *
|
| 61 |
+
E: [email protected] * W: www.physics.dcu.ie/~bty * L:N117
|
| 62 |
+
|
| 63 |
+
_______________________________________________
|
| 64 |
+
IIU mailing list
|
| 65 | |
| 66 |
+
http://iiu.taint.org/mailman/listinfo/iiu
|
| 67 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0021.f8e73bdba7277d967af4d561f0402129
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:19:36 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id F2AD843F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:25 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:26 +0100 (IST)
|
| 10 |
+
Received: from n8.grp.scd.yahoo.com (n8.grp.scd.yahoo.com [66.218.66.92])
|
| 11 |
+
by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id g7MGBSZ13944 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 17:11:28 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52742-1030032689-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.196] by n8.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 16:11:29 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 16:11:28 -0000
|
| 19 |
+
Received: (qmail 71045 invoked from network); 22 Aug 2002 16:11:28 -0000
|
| 20 |
+
Received: from unknown (66.218.66.217) by m3.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 16:11:28 -0000
|
| 22 |
+
Received: from unknown (HELO n19.grp.scd.yahoo.com) (66.218.66.74) by
|
| 23 |
+
mta2.grp.scd.yahoo.com with SMTP; 22 Aug 2002 16:11:28 -0000
|
| 24 |
+
Received: from [66.218.67.174] by n19.grp.scd.yahoo.com with NNFMP;
|
| 25 |
+
22 Aug 2002 16:11:27 -0000
|
| 26 |
+
To: [email protected]
|
| 27 |
+
Message-Id: <[email protected]>
|
| 28 |
+
In-Reply-To: <000701c248f5$1cd98500$508827d9@b5w3e9>
|
| 29 |
+
User-Agent: eGroups-EW/0.82
|
| 30 |
+
X-Mailer: Yahoo Groups Message Poster
|
| 31 |
+
From: "uncle_slacky" <[email protected]>
|
| 32 |
+
X-Originating-Ip: 20.138.254.2
|
| 33 |
+
X-Yahoo-Profile: uncle_slacky
|
| 34 |
+
MIME-Version: 1.0
|
| 35 |
+
Mailing-List: list [email protected]; contact
|
| 36 | |
| 37 |
+
Delivered-To: mailing list [email protected]
|
| 38 |
+
Precedence: bulk
|
| 39 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 40 |
+
Date: Thu, 22 Aug 2002 16:11:27 -0000
|
| 41 |
+
Subject: [zzzzteana] Re: Australian Catholic Kiddie Perv Steps Aside
|
| 42 |
+
Reply-To: [email protected]
|
| 43 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 44 |
+
Content-Transfer-Encoding: 7bit
|
| 45 |
+
|
| 46 |
+
--- In forteana@y..., "D.McMann" <dmcmann@b...> wrote:
|
| 47 |
+
> Robert Moaby, 33, who sent death threats to staff, was also jailed
|
| 48 |
+
> for hoarding indecent pictures of children on his home computer.
|
| 49 |
+
> =========
|
| 50 |
+
>
|
| 51 |
+
> Hmm, if I didn't trust our government and secret police, I could
|
| 52 |
+
look at
|
| 53 |
+
> this another way....
|
| 54 |
+
|
| 55 |
+
There is a bit of circumstantial evidence - apparently some MT
|
| 56 |
+
listers were approached by him (via email) - a little research in
|
| 57 |
+
dejanews/google groups showed a number of messages from him, clearly
|
| 58 |
+
hoping to contact girls, appearing in "alt.teens" and similar groups -
|
| 59 |
+
I just tried a Google Groups search on "Robert Moaby" and some of
|
| 60 |
+
them came top of the list.
|
| 61 |
+
|
| 62 |
+
Note for Marie - "MT" stands for Mark Thomas, a slightly slimmer, UK
|
| 63 |
+
version of your Michael Moore - the mailing list is named after him.
|
| 64 |
+
|
| 65 |
+
Rob
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 69 |
+
4 DVDs Free +s&p Join Now
|
| 70 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 71 |
+
---------------------------------------------------------------------~->
|
| 72 |
+
|
| 73 |
+
To unsubscribe from this group, send an email to:
|
| 74 | |
| 75 |
+
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0022.7241da4491c49b50c0470a3638ee35c4
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:19:31 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 6622747C69
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:23 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:23 +0100 (IST)
|
| 10 |
+
Received: from lugh.tuatha.org ([email protected] [194.125.145.45]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGJoZ14241 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 17:19:50 +0100
|
| 13 |
+
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
| 14 |
+
(8.9.3/8.9.3) with ESMTP id RAA09942; Thu, 22 Aug 2002 17:18:58 +0100
|
| 15 |
+
Received: from smtpstore.strencom.net (ns1.strencom.net [217.75.0.66]) by
|
| 16 |
+
lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id RAA09917 for <[email protected]>;
|
| 17 |
+
Thu, 22 Aug 2002 17:18:50 +0100
|
| 18 |
+
X-Authentication-Warning: lugh.tuatha.org: Host ns1.strencom.net
|
| 19 |
+
[217.75.0.66] claimed to be smtpstore.strencom.net
|
| 20 |
+
Received: from enterprise.wasptech.com (mail.wasptech.com [217.75.2.106])
|
| 21 |
+
by smtpstore.strencom.net (Postfix) with ESMTP id 8C105CEE88;
|
| 22 |
+
Thu, 22 Aug 2002 16:31:15 +0000 (AZOST)
|
| 23 |
+
X-Mimeole: Produced By Microsoft Exchange V6.0.5762.3
|
| 24 |
+
Content-Class: urn:content-classes:message
|
| 25 |
+
MIME-Version: 1.0
|
| 26 |
+
Content-Type: text/plain; charset="us-ascii"
|
| 27 |
+
Subject: RE: [ILUG] Sun Solaris..
|
| 28 |
+
Date: Thu, 22 Aug 2002 17:13:01 +0100
|
| 29 |
+
Message-Id: <[email protected]>
|
| 30 |
+
X-MS-Has-Attach:
|
| 31 |
+
X-MS-Tnef-Correlator:
|
| 32 |
+
Thread-Topic: [ILUG] Sun Solaris..
|
| 33 |
+
Thread-Index: AcJJ9p29v19nVAypRv25aSssWGeNQAAABtrw
|
| 34 |
+
From: "Fergal Moran" <[email protected]>
|
| 35 |
+
To: "Kiall Mac Innes" <[email protected]>, "ILUG" <[email protected]>
|
| 36 |
+
Content-Transfer-Encoding: 8bit
|
| 37 |
+
X-MIME-Autoconverted: from quoted-printable to 8bit by lugh.tuatha.org id
|
| 38 |
+
RAA09917
|
| 39 |
+
Sender: [email protected]
|
| 40 |
+
Errors-To: [email protected]
|
| 41 |
+
X-Mailman-Version: 1.1
|
| 42 |
+
Precedence: bulk
|
| 43 |
+
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
| 44 |
+
X-Beenthere: [email protected]
|
| 45 |
+
|
| 46 |
+
In a nutshell - Solaris is Suns own flavour of UNIX.
|
| 47 |
+
|
| 48 |
+
> -----Original Message-----
|
| 49 |
+
> From: Kiall Mac Innes [mailto:[email protected]]
|
| 50 |
+
> Sent: 22 August 2002 17:23
|
| 51 |
+
> To: ILUG
|
| 52 |
+
> Subject: [ILUG] Sun Solaris..
|
| 53 |
+
>
|
| 54 |
+
>
|
| 55 |
+
> Can someone explain what type of operating system Solaris
|
| 56 |
+
> is... as ive never seen or used it i dont know wheather to
|
| 57 |
+
> get a server from Sun or from DELL i would prefer a linux
|
| 58 |
+
> based server and Sun seems to be the one for that but im not
|
| 59 |
+
> sure if Solaris is a distro of linux or a completely
|
| 60 |
+
> different operating system? can someone explain...
|
| 61 |
+
>
|
| 62 |
+
> Kiall Mac Innes
|
| 63 |
+
>
|
| 64 |
+
>
|
| 65 |
+
> --
|
| 66 |
+
> Irish Linux Users' Group: [email protected]
|
| 67 |
+
> http://www.linux.ie/mailman/listinfo/ilug for
|
| 68 |
+
> (un)subscription information. List maintainer: [email protected]
|
| 69 |
+
>
|
| 70 |
+
|
| 71 |
+
--
|
| 72 |
+
Irish Linux Users' Group: [email protected]
|
| 73 |
+
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
| 74 |
+
List maintainer: [email protected]
|
| 75 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0023.b4a61a2990263e8825246e41a8d78399
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:19:36 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id C1E1343F9B
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:26 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:26 +0100 (IST)
|
| 10 |
+
Received: from n23.grp.scd.yahoo.com (n23.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.79]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7MGHeZ14192 for <[email protected]>; Thu, 22 Aug 2002 17:17:41 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52743-1030033059-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.201] by n23.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 16:17:41 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 16:17:39 -0000
|
| 19 |
+
Received: (qmail 96345 invoked from network); 22 Aug 2002 16:17:38 -0000
|
| 20 |
+
Received: from unknown (66.218.66.218) by m9.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 16:17:38 -0000
|
| 22 |
+
Received: from unknown (HELO n10.grp.scd.yahoo.com) (66.218.66.65) by
|
| 23 |
+
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 16:17:40 -0000
|
| 24 |
+
Received: from [66.218.67.189] by n10.grp.scd.yahoo.com with NNFMP;
|
| 25 |
+
22 Aug 2002 16:17:40 -0000
|
| 26 |
+
To: [email protected]
|
| 27 |
+
Message-Id: <[email protected]>
|
| 28 |
+
User-Agent: eGroups-EW/0.82
|
| 29 |
+
X-Mailer: Yahoo Groups Message Poster
|
| 30 |
+
From: "uncle_slacky" <[email protected]>
|
| 31 |
+
X-Originating-Ip: 20.138.254.2
|
| 32 |
+
X-Yahoo-Profile: uncle_slacky
|
| 33 |
+
MIME-Version: 1.0
|
| 34 |
+
Mailing-List: list [email protected]; contact
|
| 35 | |
| 36 |
+
Delivered-To: mailing list [email protected]
|
| 37 |
+
Precedence: bulk
|
| 38 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 39 |
+
Date: Thu, 22 Aug 2002 16:17:39 -0000
|
| 40 |
+
Subject: [zzzzteana] Which Muppet Are You?
|
| 41 |
+
Reply-To: [email protected]
|
| 42 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 43 |
+
Content-Transfer-Encoding: 7bit
|
| 44 |
+
|
| 45 |
+
Apols if this has been posted before:
|
| 46 |
+
|
| 47 |
+
http://www.pinkpaperclips.net/subs/quiz2.html
|
| 48 |
+
|
| 49 |
+
Rob
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 53 |
+
4 DVDs Free +s&p Join Now
|
| 54 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 55 |
+
---------------------------------------------------------------------~->
|
| 56 |
+
|
| 57 |
+
To unsubscribe from this group, send an email to:
|
| 58 | |
| 59 |
+
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0024.771af861a302951df7630ec4ff1965a2
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:19:25 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id CD34B47C67
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:19:21 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:19:21 +0100 (IST)
|
| 10 |
+
Received: from lugh.tuatha.org ([email protected] [194.125.145.45]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGHJZ14177 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 17:17:19 +0100
|
| 13 |
+
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
| 14 |
+
(8.9.3/8.9.3) with ESMTP id RAA09581; Thu, 22 Aug 2002 17:16:28 +0100
|
| 15 |
+
X-Authentication-Warning: lugh.tuatha.org: Host root@localhost [127.0.0.1]
|
| 16 |
+
claimed to be lugh
|
| 17 |
+
Received: from redpie.com (redpie.com [216.122.135.208] (may be forged))
|
| 18 |
+
by lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id RAA09518 for
|
| 19 |
+
<[email protected]>; Thu, 22 Aug 2002 17:16:08 +0100
|
| 20 |
+
Received: from justin ([194.46.28.223]) by redpie.com (8.8.7/8.8.5) with
|
| 21 |
+
SMTP id JAA05201 for <[email protected]>; Thu, 22 Aug 2002 09:15:59 -0700
|
| 22 |
+
(PDT)
|
| 23 |
+
From: "Kiall Mac Innes" <[email protected]>
|
| 24 |
+
To: "ILUG" <[email protected]>
|
| 25 |
+
Date: Thu, 22 Aug 2002 17:23:15 +0100
|
| 26 |
+
Message-Id: <[email protected]>
|
| 27 |
+
MIME-Version: 1.0
|
| 28 |
+
Content-Type: text/plain; charset="iso-8859-1"
|
| 29 |
+
Content-Transfer-Encoding: 7bit
|
| 30 |
+
X-Priority: 3 (Normal)
|
| 31 |
+
X-Msmail-Priority: Normal
|
| 32 |
+
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
|
| 33 |
+
X-Mimeole: Produced By Microsoft MimeOLE V5.50.4522.1200
|
| 34 |
+
Importance: Normal
|
| 35 |
+
Subject: [ILUG] Sun Solaris..
|
| 36 |
+
Sender: [email protected]
|
| 37 |
+
Errors-To: [email protected]
|
| 38 |
+
X-Mailman-Version: 1.1
|
| 39 |
+
Precedence: bulk
|
| 40 |
+
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
| 41 |
+
X-Beenthere: [email protected]
|
| 42 |
+
|
| 43 |
+
Can someone explain what type of operating system Solaris is... as ive never
|
| 44 |
+
seen or used it i dont know wheather to get a server from Sun or from DELL i
|
| 45 |
+
would prefer a linux based server and Sun seems to be the one for that but
|
| 46 |
+
im not sure if Solaris is a distro of linux or a completely different
|
| 47 |
+
operating system? can someone explain...
|
| 48 |
+
|
| 49 |
+
Kiall Mac Innes
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
--
|
| 53 |
+
Irish Linux Users' Group: [email protected]
|
| 54 |
+
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
| 55 |
+
List maintainer: [email protected]
|
| 56 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0025.64d0382de54b9e4c5b4200173133b8d7
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:31:00 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id A97BE43F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:30:58 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:30:58 +0100 (IST)
|
| 10 |
+
Received: from n17.grp.scd.yahoo.com (n17.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.72]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7MGOFZ14344 for <[email protected]>; Thu, 22 Aug 2002 17:24:16 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52744-1030033454-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.201] by n17.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 16:24:16 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 16:24:14 -0000
|
| 19 |
+
Received: (qmail 12796 invoked from network); 22 Aug 2002 16:24:13 -0000
|
| 20 |
+
Received: from unknown (66.218.66.216) by m9.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 16:24:13 -0000
|
| 22 |
+
Received: from unknown (HELO carbon) (194.73.73.92) by
|
| 23 |
+
mta1.grp.scd.yahoo.com with SMTP; 22 Aug 2002 16:24:15 -0000
|
| 24 |
+
Received: from host217-36-23-185.in-addr.btopenworld.com ([217.36.23.185])
|
| 25 |
+
by carbon with esmtp (Exim 3.22 #8) id 17huko-0000JF-00 for
|
| 26 |
+
[email protected]; Thu, 22 Aug 2002 17:24:14 +0100
|
| 27 |
+
X-Mailer: Microsoft Outlook Express Macintosh Edition - 4.5 (0410)
|
| 28 |
+
To: [email protected]
|
| 29 |
+
X-Priority: 3
|
| 30 |
+
Message-Id: <E17huko-0000JF-00@carbon>
|
| 31 |
+
From: "Tim Chapman" <[email protected]>
|
| 32 |
+
X-Yahoo-Profile: tim2ubh
|
| 33 |
+
MIME-Version: 1.0
|
| 34 |
+
Mailing-List: list [email protected]; contact
|
| 35 | |
| 36 |
+
Delivered-To: mailing list [email protected]
|
| 37 |
+
Precedence: bulk
|
| 38 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 39 |
+
Date: Thu, 22 Aug 2002 17:23:28 +0100
|
| 40 |
+
Subject: Re: [zzzzteana] Which Muppet Are You?
|
| 41 |
+
Reply-To: [email protected]
|
| 42 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 43 |
+
Content-Transfer-Encoding: 7bit
|
| 44 |
+
|
| 45 |
+
> Apols if this has been posted before:
|
| 46 |
+
>
|
| 47 |
+
> http://www.pinkpaperclips.net/subs/quiz2.html
|
| 48 |
+
>
|
| 49 |
+
So, anyone who isn't Beaker?
|
| 50 |
+
|
| 51 |
+
TimC
|
| 52 |
+
Meep
|
| 53 |
+
|
| 54 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 55 |
+
4 DVDs Free +s&p Join Now
|
| 56 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 57 |
+
---------------------------------------------------------------------~->
|
| 58 |
+
|
| 59 |
+
To unsubscribe from this group, send an email to:
|
| 60 | |
| 61 |
+
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0026.6baf1aea162ccb9a6e9f142c0715ceb4
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:45:53 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 08BC143F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:45:53 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:45:53 +0100 (IST)
|
| 10 |
+
Received: from lugh.tuatha.org ([email protected] [194.125.145.45]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGbKZ14933 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 17:37:20 +0100
|
| 13 |
+
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
| 14 |
+
(8.9.3/8.9.3) with ESMTP id RAA10694; Thu, 22 Aug 2002 17:36:27 +0100
|
| 15 |
+
Received: from moe.jinny.ie ([193.120.171.3]) by lugh.tuatha.org
|
| 16 |
+
(8.9.3/8.9.3) with ESMTP id RAA10669 for <[email protected]>; Thu,
|
| 17 |
+
22 Aug 2002 17:36:20 +0100
|
| 18 |
+
X-Authentication-Warning: lugh.tuatha.org: Host [193.120.171.3] claimed to
|
| 19 |
+
be moe.jinny.ie
|
| 20 |
+
Received: from jlooney.jinny.ie (unknown [193.120.171.2]) by moe.jinny.ie
|
| 21 |
+
(Postfix) with ESMTP id C906A7FC48 for <[email protected]>; Thu,
|
| 22 |
+
22 Aug 2002 17:36:19 +0100 (IST)
|
| 23 |
+
Received: by jlooney.jinny.ie (Postfix, from userid 500) id 09E7E8B1;
|
| 24 |
+
Thu, 22 Aug 2002 17:36:42 +0100 (IST)
|
| 25 |
+
Date: Thu, 22 Aug 2002 17:36:41 +0100
|
| 26 |
+
From: "John P. Looney" <[email protected]>
|
| 27 |
+
To: ILUG <[email protected]>
|
| 28 |
+
Subject: Re: [ILUG] Sun Solaris..
|
| 29 |
+
Message-Id: <[email protected]>
|
| 30 |
+
Reply-To: [email protected]
|
| 31 |
+
Mail-Followup-To: ILUG <[email protected]>
|
| 32 |
+
References: <[email protected]>
|
| 33 |
+
MIME-Version: 1.0
|
| 34 |
+
Content-Type: text/plain; charset=us-ascii
|
| 35 |
+
Content-Disposition: inline
|
| 36 |
+
In-Reply-To: <[email protected]>
|
| 37 |
+
User-Agent: Mutt/1.4i
|
| 38 |
+
X-Os: Red Hat Linux 7.3/Linux 2.4.18-3
|
| 39 |
+
X-Url: http://www.redbrick.dcu.ie/~valen
|
| 40 |
+
X-Gnupg-Publickey: http://www.redbrick.dcu.ie/~valen/public.asc
|
| 41 |
+
Sender: [email protected]
|
| 42 |
+
Errors-To: [email protected]
|
| 43 |
+
X-Mailman-Version: 1.1
|
| 44 |
+
Precedence: bulk
|
| 45 |
+
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
| 46 |
+
X-Beenthere: [email protected]
|
| 47 |
+
|
| 48 |
+
On Thu, Aug 22, 2002 at 05:13:01PM +0100, Fergal Moran mentioned:
|
| 49 |
+
> In a nutshell - Solaris is Suns own flavour of UNIX.
|
| 50 |
+
|
| 51 |
+
Though I'm sure that this nice person would like a bit more detail.
|
| 52 |
+
|
| 53 |
+
Solaris is quite different to Linux, though these days you can make
|
| 54 |
+
solaris act a lot like linux with an extra CD of GNU tools Sun ship with
|
| 55 |
+
solaris. It is based on the SysV unix family, so it's quite similar to
|
| 56 |
+
other unixen like HPUX and SCO.
|
| 57 |
+
|
| 58 |
+
Sun's hardware in general is more reliable, and a lot more expensive. One
|
| 59 |
+
of the main bonuses you get by buying Sun is that you are getting your
|
| 60 |
+
hardware and software from one company, so if you have a support contract,
|
| 61 |
+
they have to fix it. They can't fob you off with 'that's a software
|
| 62 |
+
problem, talk to the software vendor.' etc.
|
| 63 |
+
|
| 64 |
+
If you are set on Linux, you most likely can do your own support. There
|
| 65 |
+
is then a world of different hardware options. You can run Linux on Sparc,
|
| 66 |
+
though some companies like RedHat don't maintain a sparc port anymore.
|
| 67 |
+
|
| 68 |
+
You can also buy your machine from linux-oriented companies like DNUK,
|
| 69 |
+
who do machines designed to run linux, and their own version of linux,
|
| 70 |
+
that has a few extras for their machines. Or, you can get a machine from a
|
| 71 |
+
cheaper company like Dell, and it'll most likely work, most of the time.
|
| 72 |
+
|
| 73 |
+
John
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
--
|
| 77 |
+
Irish Linux Users' Group: [email protected]
|
| 78 |
+
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
| 79 |
+
List maintainer: [email protected]
|
| 80 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0027.11da06d9130a188bf0ffb2060881dbe9
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 17:45:54 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id E8B1343F9B
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 12:45:53 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 17:45:53 +0100 (IST)
|
| 10 |
+
Received: from lugh.tuatha.org ([email protected] [194.125.145.45]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MGjVZ15193 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 17:45:31 +0100
|
| 13 |
+
Received: from lugh (root@localhost [127.0.0.1]) by lugh.tuatha.org
|
| 14 |
+
(8.9.3/8.9.3) with ESMTP id RAA11100; Thu, 22 Aug 2002 17:42:54 +0100
|
| 15 |
+
Received: from corvil.com. (k100-159.bas1.dbn.dublin.eircom.net
|
| 16 |
+
[159.134.100.159]) by lugh.tuatha.org (8.9.3/8.9.3) with ESMTP id RAA11076
|
| 17 |
+
for <[email protected]>; Thu, 22 Aug 2002 17:42:46 +0100
|
| 18 |
+
X-Authentication-Warning: lugh.tuatha.org: Host k100-159.bas1.dbn.dublin.eircom.net
|
| 19 |
+
[159.134.100.159] claimed to be corvil.com.
|
| 20 |
+
Received: from corvil.com (pixelbeat.local.corvil.com [172.18.1.170]) by
|
| 21 |
+
corvil.com. (8.12.5/8.12.5) with ESMTP id g7MGgjn4090705 for
|
| 22 |
+
<[email protected]>; Thu, 22 Aug 2002 17:42:46 +0100 (IST) (envelope-from
|
| 23 | |
| 24 |
+
Message-Id: <[email protected]>
|
| 25 |
+
Date: Thu, 22 Aug 2002 17:42:26 +0100
|
| 26 |
+
From: Padraig Brady <[email protected]>
|
| 27 |
+
Organization: Corvil Networks
|
| 28 |
+
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020408
|
| 29 |
+
X-Accept-Language: en-us, en
|
| 30 |
+
MIME-Version: 1.0
|
| 31 |
+
To: [email protected]
|
| 32 |
+
Subject: Re: [ILUG] Sun Solaris..
|
| 33 |
+
References: <[email protected]>
|
| 34 | |
| 35 |
+
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
|
| 36 |
+
Content-Transfer-Encoding: 8bit
|
| 37 |
+
Sender: [email protected]
|
| 38 |
+
Errors-To: [email protected]
|
| 39 |
+
X-Mailman-Version: 1.1
|
| 40 |
+
Precedence: bulk
|
| 41 |
+
List-Id: Irish Linux Users' Group <ilug.linux.ie>
|
| 42 |
+
X-Beenthere: [email protected]
|
| 43 |
+
|
| 44 |
+
John P. Looney wrote:
|
| 45 |
+
> On Thu, Aug 22, 2002 at 05:13:01PM +0100, Fergal Moran mentioned:
|
| 46 |
+
>
|
| 47 |
+
>>In a nutshell - Solaris is Suns own flavour of UNIX.
|
| 48 |
+
>
|
| 49 |
+
>
|
| 50 |
+
> Though I'm sure that this nice person would like a bit more detail.
|
| 51 |
+
>
|
| 52 |
+
> Solaris is quite different to Linux, though these days you can make
|
| 53 |
+
> solaris act a lot like linux with an extra CD of GNU tools Sun ship with
|
| 54 |
+
> solaris. It is based on the SysV unix family, so it's quite similar to
|
| 55 |
+
> other unixen like HPUX and SCO.
|
| 56 |
+
>
|
| 57 |
+
> Sun's hardware in general is more reliable, and a lot more expensive. One
|
| 58 |
+
> of the main bonuses you get by buying Sun is that you are getting your
|
| 59 |
+
> hardware and software from one company, so if you have a support contract,
|
| 60 |
+
> they have to fix it. They can't fob you off with 'that's a software
|
| 61 |
+
> problem, talk to the software vendor.' etc.
|
| 62 |
+
>
|
| 63 |
+
> If you are set on Linux, you most likely can do your own support. There
|
| 64 |
+
> is then a world of different hardware options. You can run Linux on Sparc,
|
| 65 |
+
> though some companies like RedHat don't maintain a sparc port anymore.
|
| 66 |
+
>
|
| 67 |
+
> You can also buy your machine from linux-oriented companies like DNUK,
|
| 68 |
+
> who do machines designed to run linux, and their own version of linux,
|
| 69 |
+
> that has a few extras for their machines. Or, you can get a machine from a
|
| 70 |
+
> cheaper company like Dell, and it'll most likely work, most of the time.
|
| 71 |
+
|
| 72 |
+
Why do you say Dell is cheaper than DNUK?
|
| 73 |
+
|
| 74 |
+
It gets a bit complicated though!
|
| 75 |
+
http://www.levenez.com/unix/history.html
|
| 76 |
+
|
| 77 |
+
P�draig.
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
--
|
| 81 |
+
Irish Linux Users' Group: [email protected]
|
| 82 |
+
http://www.linux.ie/mailman/listinfo/ilug for (un)subscription information.
|
| 83 |
+
List maintainer: [email protected]
|
| 84 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0028.54cf7aa229456fb33194b3a12a713e3e
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 18:17:16 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 3936F43F9B
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 13:17:16 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 18:17:16 +0100 (IST)
|
| 10 |
+
Received: from listman.example.com (listman.example.com [66.187.233.211]) by
|
| 11 |
+
dogma.slashnull.org (8.11.6/8.11.6) with ESMTP id g7MHCFZ16258 for
|
| 12 |
+
<[email protected]>; Thu, 22 Aug 2002 18:12:15 +0100
|
| 13 |
+
Received: from listman.example.com (localhost.localdomain [127.0.0.1]) by
|
| 14 |
+
listman.redhat.com (Postfix) with ESMTP id 98CA240F20; Thu, 22 Aug 2002
|
| 15 |
+
13:08:54 -0400 (EDT)
|
| 16 |
+
Delivered-To: [email protected]
|
| 17 |
+
Received: from int-mx1.corp.example.com (int-mx1.corp.example.com
|
| 18 |
+
[172.16.52.254]) by listman.redhat.com (Postfix) with ESMTP id 163BD3F5C4
|
| 19 |
+
for <[email protected]>; Thu, 22 Aug 2002 12:55:20 -0400
|
| 20 |
+
(EDT)
|
| 21 |
+
Received: (from mail@localhost) by int-mx1.corp.example.com (8.11.6/8.11.6)
|
| 22 |
+
id g7MGtHh14426 for [email protected]; Thu, 22 Aug 2002
|
| 23 |
+
12:55:17 -0400
|
| 24 |
+
Received: from mx1.example.com (mx1.example.com [172.16.48.31]) by
|
| 25 |
+
int-mx1.corp.redhat.com (8.11.6/8.11.6) with SMTP id g7MGtGY14422 for
|
| 26 |
+
<[email protected]>; Thu, 22 Aug 2002 12:55:16 -0400
|
| 27 |
+
Received: from milou.dyndns.org (h189n1fls22o974.telia.com
|
| 28 |
+
[213.64.79.189]) by mx1.redhat.com (8.11.6/8.11.6) with SMTP id
|
| 29 |
+
g7MGekl27238 for <[email protected]>; Thu, 22 Aug 2002 12:40:46
|
| 30 |
+
-0400
|
| 31 |
+
Received: by milou.dyndns.org (Postfix, from userid 500) id 1F95B3F24;
|
| 32 |
+
Thu, 22 Aug 2002 18:55:08 +0200 (CEST)
|
| 33 |
+
Received: from tippex.localdomain (localhost [127.0.0.1]) by
|
| 34 |
+
milou.dyndns.org (Postfix) with ESMTP id F3AA03F23; Thu, 22 Aug 2002
|
| 35 |
+
18:55:08 +0200 (CEST)
|
| 36 |
+
X-Mailer: exmh version 2.5_20020822 01/15/2001 with nmh-1.0.4
|
| 37 |
+
To: Chris Garrigues <[email protected]>
|
| 38 |
+
Cc: [email protected]
|
| 39 |
+
Subject: Re: CVS report
|
| 40 |
+
In-Reply-To: Message from Chris Garrigues
|
| 41 |
+
<[email protected]> of
|
| 42 |
+
"Thu, 22 Aug 2002 09:59:35 CDT."
|
| 43 | |
| 44 |
+
MIME-Version: 1.0
|
| 45 |
+
Content-Type: text/plain; charset=us-ascii
|
| 46 |
+
From: Anders Eriksson <[email protected]>
|
| 47 |
+
Message-Id: <[email protected]>
|
| 48 |
+
X-Loop: [email protected]
|
| 49 |
+
Sender: [email protected]
|
| 50 |
+
Errors-To: [email protected]
|
| 51 |
+
X-Beenthere: [email protected]
|
| 52 |
+
X-Mailman-Version: 2.0.1
|
| 53 |
+
Precedence: bulk
|
| 54 |
+
List-Help: <mailto:[email protected]?subject=help>
|
| 55 |
+
List-Post: <mailto:[email protected]>
|
| 56 |
+
List-Subscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 57 |
+
<mailto:[email protected]?subject=subscribe>
|
| 58 |
+
List-Id: Discussion list for EXMH developers <exmh-workers.example.com>
|
| 59 |
+
List-Unsubscribe: <https://listman.example.com/mailman/listinfo/exmh-workers>,
|
| 60 |
+
<mailto:[email protected]?subject=unsubscribe>
|
| 61 |
+
List-Archive: <https://listman.example.com/mailman/private/exmh-workers/>
|
| 62 |
+
Date: Thu, 22 Aug 2002 18:55:03 +0200
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
> > > > Just cvs up'ed and nowadays Catch-up Unseen is __extremely__ slow on
|
| 68 |
+
> > > > large (>100 msgs) unseen sequences. Anybody else having this problem?
|
| 69 |
+
> > >
|
| 70 |
+
> > > I'll take the blame.
|
| 71 |
+
> > >
|
| 72 |
+
> > > The reason, I suspect, is that we're needlessly reading the .sequences file
|
| 73 |
+
> > > multiple times because of other sequences. I need to make the code much
|
| 74 |
+
> > > smarter about handling that file, but first I have a few other fish to fry in
|
| 75 |
+
> > > my rather large patch that's on it's way.
|
| 76 |
+
> > >
|
| 77 |
+
> >
|
| 78 |
+
> > No panic,
|
| 79 |
+
> >
|
| 80 |
+
> > I'm all for cleaning things up before getting it optimized.
|
| 81 |
+
>
|
| 82 |
+
> Okay, this fix is now checked in.
|
| 83 |
+
>
|
| 84 |
+
I'm afraid it didn't help. It still seems to be slower than ~1 month
|
| 85 |
+
ago. Maybe slightly faster than yeasterday. I'm (still) seeing an
|
| 86 |
+
"unseen countdown" in the log.
|
| 87 |
+
|
| 88 |
+
18:51:25 Writing /home/ander/Mail/lists/l-k/.mh_sequences
|
| 89 |
+
18:51:25 lists/l-k has 57 msgs in unseen
|
| 90 |
+
18:51:25 lists/l-k has 56 msgs in unseen
|
| 91 |
+
18:51:25 lists/l-k has 55 msgs in unseen
|
| 92 |
+
18:51:26 lists/l-k has 54 msgs in unseen
|
| 93 |
+
18:51:26 lists/l-k has 53 msgs in unseen
|
| 94 |
+
18:51:26 lists/l-k has 52 msgs in unseen
|
| 95 |
+
18:51:26 lists/l-k has 51 msgs in unseen
|
| 96 |
+
18:51:26 lists/l-k has 50 msgs in unseen
|
| 97 |
+
18:51:26 lists/l-k has 49 msgs in unseen
|
| 98 |
+
18:51:26 lists/l-k has 48 msgs in unseen
|
| 99 |
+
18:51:26 lists/l-k has 47 msgs in unseen
|
| 100 |
+
18:51:26 lists/l-k has 46 msgs in unseen
|
| 101 |
+
18:51:26 lists/l-k has 45 msgs in unseen
|
| 102 |
+
18:51:27 lists/l-k has 44 msgs in unseen
|
| 103 |
+
18:51:27 lists/l-k has 43 msgs in unseen
|
| 104 |
+
18:51:27 lists/l-k has 42 msgs in unseen
|
| 105 |
+
18:51:27 lists/l-k has 41 msgs in unseen
|
| 106 |
+
18:51:27 lists/l-k has 40 msgs in unseen
|
| 107 |
+
18:51:27 lists/l-k has 39 msgs in unseen
|
| 108 |
+
18:51:27 lists/l-k has 38 msgs in unseen
|
| 109 |
+
18:51:27 lists/l-k has 37 msgs in unseen
|
| 110 |
+
18:51:27 lists/l-k has 36 msgs in unseen
|
| 111 |
+
18:51:28 lists/l-k has 35 msgs in unseen
|
| 112 |
+
18:51:28 lists/l-k has 34 msgs in unseen
|
| 113 |
+
18:51:28 lists/l-k has 33 msgs in unseen
|
| 114 |
+
18:51:28 lists/l-k has 32 msgs in unseen
|
| 115 |
+
18:51:28 lists/l-k has 31 msgs in unseen
|
| 116 |
+
18:51:28 lists/l-k has 30 msgs in unseen
|
| 117 |
+
18:51:28 lists/l-k has 29 msgs in unseen
|
| 118 |
+
18:51:28 lists/l-k has 28 msgs in unseen
|
| 119 |
+
18:51:28 lists/l-k has 27 msgs in unseen
|
| 120 |
+
18:51:28 lists/l-k has 26 msgs in unseen
|
| 121 |
+
18:51:29 lists/l-k has 25 msgs in unseen
|
| 122 |
+
18:51:29 lists/l-k has 24 msgs in unseen
|
| 123 |
+
18:51:29 lists/l-k has 23 msgs in unseen
|
| 124 |
+
18:51:29 lists/l-k has 22 msgs in unseen
|
| 125 |
+
18:51:29 lists/l-k has 21 msgs in unseen
|
| 126 |
+
18:51:29 lists/l-k has 20 msgs in unseen
|
| 127 |
+
18:51:29 lists/l-k has 19 msgs in unseen
|
| 128 |
+
18:51:29 lists/l-k has 18 msgs in unseen
|
| 129 |
+
18:51:29 lists/l-k has 17 msgs in unseen
|
| 130 |
+
18:51:29 lists/l-k has 16 msgs in unseen
|
| 131 |
+
18:51:30 lists/l-k has 15 msgs in unseen
|
| 132 |
+
18:51:30 lists/l-k has 14 msgs in unseen
|
| 133 |
+
18:51:30 lists/l-k has 13 msgs in unseen
|
| 134 |
+
18:51:30 lists/l-k has 12 msgs in unseen
|
| 135 |
+
18:51:30 lists/l-k has 11 msgs in unseen
|
| 136 |
+
18:51:30 lists/l-k has 10 msgs in unseen
|
| 137 |
+
18:51:30 lists/l-k has 9 msgs in unseen
|
| 138 |
+
18:51:30 digits changed
|
| 139 |
+
18:51:30 lists/l-k has 8 msgs in unseen
|
| 140 |
+
18:51:30 lists/l-k has 7 msgs in unseen
|
| 141 |
+
18:51:31 lists/l-k has 6 msgs in unseen
|
| 142 |
+
18:51:31 lists/l-k has 5 msgs in unseen
|
| 143 |
+
18:51:31 lists/l-k has 4 msgs in unseen
|
| 144 |
+
18:51:31 lists/l-k has 3 msgs in unseen
|
| 145 |
+
18:51:31 lists/l-k has 2 msgs in unseen
|
| 146 |
+
18:51:31 lists/l-k has 1 msgs in unseen
|
| 147 |
+
18:51:31 lists/l-k has 0 msgs in unseen
|
| 148 |
+
18:51:31 FlistUnseenFolder lists/l-k
|
| 149 |
+
18:51:31 ok
|
| 150 |
+
18:51:47 Folder_Change lists/exmh {Msg_Show cur}
|
| 151 |
+
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
_______________________________________________
|
| 157 |
+
Exmh-workers mailing list
|
| 158 | |
| 159 |
+
https://listman.redhat.com/mailman/listinfo/exmh-workers
|
| 160 |
+
|
notebooks/portable_student_notebook/data/raw/easy_ham/0029.7119e865bff73aca46681d96a451cb60
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
From [email protected] Thu Aug 22 18:29:58 2002
|
| 2 |
+
Return-Path: <[email protected]>
|
| 3 |
+
Delivered-To: [email protected]
|
| 4 |
+
Received: from localhost (localhost [127.0.0.1])
|
| 5 |
+
by phobos.labs.netnoteinc.com (Postfix) with ESMTP id 89B2943F99
|
| 6 |
+
for <zzzz@localhost>; Thu, 22 Aug 2002 13:29:49 -0400 (EDT)
|
| 7 |
+
Received: from phobos [127.0.0.1]
|
| 8 |
+
by localhost with IMAP (fetchmail-5.9.0)
|
| 9 |
+
for zzzz@localhost (single-drop); Thu, 22 Aug 2002 18:29:49 +0100 (IST)
|
| 10 |
+
Received: from n32.grp.scd.yahoo.com (n32.grp.scd.yahoo.com
|
| 11 |
+
[66.218.66.100]) by dogma.slashnull.org (8.11.6/8.11.6) with SMTP id
|
| 12 |
+
g7MHK2Z16822 for <[email protected]>; Thu, 22 Aug 2002 18:20:02 +0100
|
| 13 |
+
X-Egroups-Return: sentto-2242572-52757-1030036801-zzzz=example.com@returns.groups.yahoo.com
|
| 14 |
+
Received: from [66.218.67.201] by n32.grp.scd.yahoo.com with NNFMP;
|
| 15 |
+
22 Aug 2002 17:20:03 -0000
|
| 16 |
+
X-Sender: [email protected]
|
| 17 |
+
X-Apparently-To: [email protected]
|
| 18 |
+
Received: (EGP: mail-8_1_0_1); 22 Aug 2002 17:20:01 -0000
|
| 19 |
+
Received: (qmail 45255 invoked from network); 22 Aug 2002 17:19:58 -0000
|
| 20 |
+
Received: from unknown (66.218.66.218) by m9.grp.scd.yahoo.com with QMQP;
|
| 21 |
+
22 Aug 2002 17:19:58 -0000
|
| 22 |
+
Received: from unknown (HELO periwinkle.noc.ucla.edu) (169.232.47.11) by
|
| 23 |
+
mta3.grp.scd.yahoo.com with SMTP; 22 Aug 2002 17:20:00 -0000
|
| 24 |
+
Received: from tigerlily.noc.ucla.edu (tigerlily.noc.ucla.edu
|
| 25 |
+
[169.232.46.12]) by periwinkle.noc.ucla.edu (8.12.5/8.12.5) with ESMTP id
|
| 26 |
+
g7MHK0p0011232 for <[email protected]>; Thu, 22 Aug 2002 10:20:00
|
| 27 |
+
-0700
|
| 28 |
+
Received: from leslie (ca-stmnca-cuda1-blade1a-115.stmnca.adelphia.net
|
| 29 |
+
[68.65.192.115]) (authenticated bits=0) by tigerlily.noc.ucla.edu
|
| 30 |
+
(8.12.3/8.12.3) with ESMTP id g7MHJxJA019627 for
|
| 31 |
+
<[email protected]>; Thu, 22 Aug 2002 10:19:59 -0700
|
| 32 |
+
Message-Id: <005801c24a00$1e226060$73c04144@leslie>
|
| 33 |
+
To: <[email protected]>
|
| 34 |
+
References: <000001c249ff$50bc96e0$da514ed5@roswell>
|
| 35 |
+
X-Priority: 3
|
| 36 |
+
X-Msmail-Priority: Normal
|
| 37 |
+
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
|
| 38 |
+
X-Mimeole: Produced By Microsoft MimeOLE V6.00.2600.0000
|
| 39 |
+
From: "leslie ellen jones" <[email protected]>
|
| 40 |
+
X-Yahoo-Profile: luned23
|
| 41 |
+
MIME-Version: 1.0
|
| 42 |
+
Mailing-List: list [email protected]; contact
|
| 43 | |
| 44 |
+
Delivered-To: mailing list [email protected]
|
| 45 |
+
Precedence: bulk
|
| 46 |
+
List-Unsubscribe: <mailto:[email protected]>
|
| 47 |
+
Date: Thu, 22 Aug 2002 10:19:48 -0700
|
| 48 |
+
Subject: Re: [zzzzteana] Which Muppet Are You?
|
| 49 |
+
Reply-To: [email protected]
|
| 50 |
+
Content-Type: text/plain; charset=US-ASCII
|
| 51 |
+
Content-Transfer-Encoding: 7bit
|
| 52 |
+
|
| 53 |
+
Hey, it's not easy being green.
|
| 54 |
+
|
| 55 |
+
leslie
|
| 56 |
+
|
| 57 |
+
Leslie Ellen Jones, Ph.D.
|
| 58 |
+
Jack of All Trades and Doctor of Folklore
|
| 59 | |
| 60 |
+
|
| 61 |
+
"Truth is an odd number" -- Flann O'Brien
|
| 62 |
+
----- Original Message -----
|
| 63 |
+
From: Dino
|
| 64 |
+
To: [email protected]
|
| 65 |
+
Sent: Thursday, August 22, 2002 10:13 AM
|
| 66 |
+
Subject: RE: [zzzzteana] Which Muppet Are You?
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
Damn kermit...boring...
|
| 70 |
+
Wanna be rizzo he's the coolest
|
| 71 |
+
Dino
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
Yahoo! Groups Sponsor
|
| 75 |
+
ADVERTISEMENT
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
To unsubscribe from this group, send an email to:
|
| 80 | |
| 81 |
+
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|
| 85 |
+
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
[Non-text portions of this message have been removed]
|
| 89 |
+
|
| 90 |
+
|
| 91 |
+
------------------------ Yahoo! Groups Sponsor ---------------------~-->
|
| 92 |
+
4 DVDs Free +s&p Join Now
|
| 93 |
+
http://us.click.yahoo.com/pt6YBB/NXiEAA/mG3HAA/7gSolB/TM
|
| 94 |
+
---------------------------------------------------------------------~->
|
| 95 |
+
|
| 96 |
+
To unsubscribe from this group, send an email to:
|
| 97 | |
| 98 |
+
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
|