Note: You are currently viewing documentation for Moodle 2.0. Up-to-date documentation for the latest stable version is available here: Quickmail block.

Talk:Quickmail block: Difference between revisions

From MoodleDocs
(Quickmail in PostgreSQL)
 
No edit summary
Line 15: Line 15:


Rubens Takiguti Ribeiro
Rubens Takiguti Ribeiro
Just wondering if this documentation is specific to Moodle 2.+ as it's under the 2.0 section, but references "...quickmail directory in block_quickmail_1.5/blocks/." which appears not to be the 2.+ version.  I found this reference (http://moodle.org/plugins/view.php?plugin=block_quickmail) to a 2.0/2.1 version but am not sure if the documentation matches it?

Revision as of 23:22, 23 September 2011

Hello, we've installed Quickmail in a Moodle using PostgreSQL. We've used the following command to manually create the log table:

create table mdl_block_quickmail_log (

 id serial primary key,
 courseid integer not null default '0',
 userid integer not null default '0',
 mailto text not null default ,
 subject varchar(255) not null default ,
 message text not null default ,
 attachment varchar(255) not null default ,
 format int4 not null default '1',
 timesent integer not null default '0'

);

Rubens Takiguti Ribeiro


Just wondering if this documentation is specific to Moodle 2.+ as it's under the 2.0 section, but references "...quickmail directory in block_quickmail_1.5/blocks/." which appears not to be the 2.+ version. I found this reference (http://moodle.org/plugins/view.php?plugin=block_quickmail) to a 2.0/2.1 version but am not sure if the documentation matches it?