<<< Date Index >>>     <<< Thread Index >>>

Re: Problem displaying text/html mime attachments (solved)



Stefano Sabatini wrote:
> # textual session
> if [ -z "display" ]; then

This will never be true.  You meant to say the following there.

  if [ -z "$DISPLAY" ]; then

Bob