Visualizzazione post con etichetta svuotare. Mostra tutti i post
Visualizzazione post con etichetta svuotare. Mostra tutti i post

mercoledì 9 settembre 2009

Postfix: come svuotare le code

Potete usare il comando pfqueue per gestire interattivamente tutte le code di postfix oppure ricorrere (come da esempi seguenti) al comando postsuper fornito con postfix.


Comando per svuotare tutte le code di postfix (incoming, hold, active, deferred):
postsuper -d ALL
Comando per svuotare una coda di postfix:
postsuper -d ALL incoming
o
postsuper -d ALL hold
o
postsuper -d ALL active
o
postsuper -d ALL deferred

mercoledì 7 gennaio 2009

Evolution: impossibile svuotare la Trash

Se non riuscite a svuotare la trash di evolution (ovvero, qualche messaggio resta li' senza degnarsi di sparire) e ricevete nella status bar un errore:
Error expunging folder
Siete di fronte al bug 287811 di Evolution.

Il workaround proposto e' il seguente ed e' valido fino alla versione 8.04 di Ubuntu (Hardy Heron) piu' sotto trovate la versione per Intrepid Ibex:
1. Mettete Evolution offline (File/Work Offline)
2. chiudete evolution
3. aprite un terminale ed eseguite:
evolution --force-shutdown
find ~/.evolution/mail/local -name "*ev-summary" -exec rm -f {} \;
4. lanciate evolution
5. aspettate qualche secondo (finche' la status bar in basso non sia vuota)
6. chiudete evolution (potrebbe volerci un po' piu' tempo del solito)
7. Enable online mode (File/Work Online)

Se avete Ubuntu 8.10 (Intrepid Ibex) occorre usare questa versione del workaround:
1. put evolution in offline mode (File/Work Offline)
2. close evolution
3. open a terminal and run:
evolution --force-shutdown
find ~/.evolution/mail/local -name "*ibex*" -exec rm -f {} \;
find ~/.evolution/mail/local -name "*cmeta" -exec rm -f {} \;
4. start evolution
5. wait several seconds (until the status bar at the bottom is empty)
6. close evolution (it may take a long time to close)
7. Start evolution
8. Enable online mode (File/Work Online)