Class: TMail::Maildir

Inherits:
Object
  • Object
show all
Extended by:
Mutex_m
Defined in:
lib/action_mailer/vendor/tmail/mailbox.rb,
lib/action_mailer/vendor/tmail/obsolete.rb

Constant Summary collapse

PORT_CLASS =
MaildirPort
TOO_OLD =

36 hour

60 * 60 * 36

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dir = nil) ⇒ Maildir

Returns a new instance of Maildir.

Raises:

  • (ArgumentError)


329
330
331
332
333
334
335
336
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 329

def initialize( dir = nil )
  @dirname = dir || ENV['MAILDIR']
  raise ArgumentError, "not directory: #{@dirname}"\
                          unless FileTest.directory? @dirname
  @new = "#{@dirname}/new"
  @tmp = "#{@dirname}/tmp"
  @cur = "#{@dirname}/cur"
end

Class Method Details

.unique_numberObject



322
323
324
325
326
327
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 322

def Maildir.unique_number
  synchronize {
      @seq += 1
      return @seq
  }
end

Instance Method Details

#check_tmpObject



399
400
401
402
403
404
405
406
407
408
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 399

def check_tmp
  old = Time.now.to_i - TOO_OLD
  
  each_filename(@tmp) do |full, fname|
    if FileTest.file? full and
       File.stat(full).mtime.to_i < old
      File.unlink full
    end
  end
end

#closeObject



346
347
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 346

def close
end

#directoryObject



338
339
340
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 338

def directory
  @dirname
end

#each_new_portObject Also known as: each_newmail



387
388
389
390
391
392
393
394
395
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 387

def each_new_port
  mail_files(@new).each do |path|
    dest = @cur + '/' + File.basename(path)
    File.rename path, dest
    yield PORT_CLASS.new(dest)
  end

  check_tmp
end

#each_portObject Also known as: each, each_mail



349
350
351
352
353
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 349

def each_port
  mail_files(@cur).each do |path|
    yield PORT_CLASS.new(path)
  end
end

#inspectObject



342
343
344
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 342

def inspect
  "#<#{self.class} #{@dirname}>"
end

#new_portObject Also known as: new_mail



365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 365

def new_port
  fname = nil
  tmpfname = nil
  newfname = nil

  begin
    fname = "#{Time.now.to_i}.#{$$}_#{Maildir.unique_number}.#{Socket.gethostname}"
    
    tmpfname = "#{@tmp}/#{fname}"
    newfname = "#{@new}/#{fname}"
  end while FileTest.exist? tmpfname

  if block_given?
    File.open(tmpfname, 'w') {|f| yield f }
    File.rename tmpfname, newfname
    PORT_CLASS.new(newfname)
  else
    File.open(tmpfname, 'w') {|f| f.write "\n\n" }
    PORT_CLASS.new(tmpfname)
  end
end

#reverse_each_portObject Also known as: reverse_each



357
358
359
360
361
# File 'lib/action_mailer/vendor/tmail/mailbox.rb', line 357

def reverse_each_port
  mail_files(@cur).reverse_each do |path|
    yield PORT_CLASS.new(path)
  end
end